Skip to content

Commit fc98257

Browse files
committed
Actually add solution file
1 parent 76f669f commit fc98257

6 files changed

Lines changed: 33 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,6 @@ FodyWeavers.xsd
8080
# OS-specific
8181
Thumbs.db
8282
Desktop.ini
83-
.DS_Store
83+
.DS_Store
84+
.idea/
85+
external_dlls/PUT_EXTERNAL_DLLS_HERE

CommunityResources.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{70C57300-2431-4824-B9F3-4522377BD657}") = "CommunityResources", "src\CommunityResources\CommunityResources.csproj", "{2A62527B-B543-4E5A-A197-D28C37F282D8}"
4+
EndProject
5+
Global
6+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7+
Debug|Any CPU = Debug|Any CPU
8+
Release|Any CPU = Release|Any CPU
9+
Deploy|Any CPU = Deploy|Any CPU
10+
DeployAndRun|Any CPU = DeployAndRun|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Release|Any CPU.Build.0 = Release|Any CPU
17+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Deploy|Any CPU.ActiveCfg = Deploy|Any CPU
18+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.Deploy|Any CPU.Build.0 = Deploy|Any CPU
19+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.DeployAndRun|Any CPU.ActiveCfg = DeployAndRun|Any CPU
20+
{2A62527B-B543-4E5A-A197-D28C37F282D8}.DeployAndRun|Any CPU.Build.0 = DeployAndRun|Any CPU
21+
EndGlobalSection
22+
EndGlobal

scripts/build-debug.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
dotnet build "../CommunityResourceUnits.sln" -c Debug

scripts/build-deploy.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
dotnet build "../CommunityResourceUnits.sln" -c Deploy

scripts/build-release.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
dotnet build "../CommunityResourceUnits.sln" -c Release

scripts/build-run.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
dotnet build "../CommunityResourceUnits.sln" -c DeployAndRun

0 commit comments

Comments
 (0)