Skip to content

Commit

Permalink
Add solution file
Browse files Browse the repository at this point in the history
  • Loading branch information
jelledruyts committed Jun 18, 2023
1 parent bc51fa1 commit 1388cc7
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"appService.preDeployTask": "publish-release",
"appService.deploySubpath": "Authr.WebApp/bin/Release/netcorenet7.0/publish"
"dotnet.defaultSolution": "Authr.WebApp.sln"
}
10 changes: 5 additions & 5 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/Authr.WebApp/Authr.WebApp.csproj",
"${workspaceFolder}/Authr.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
Expand All @@ -23,7 +23,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Authr.WebApp/Authr.WebApp.csproj",
"${workspaceFolder}/Authr.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
Expand All @@ -36,7 +36,7 @@
"args": [
"watch",
"run",
"${workspaceFolder}/Authr.WebApp/Authr.WebApp.csproj",
"${workspaceFolder}/Authr.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
Expand All @@ -48,7 +48,7 @@
"type": "process",
"args": [
"clean",
"${workspaceFolder}/Authr.WebApp",
"${workspaceFolder}/Authr.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
Expand All @@ -60,7 +60,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Authr.WebApp",
"${workspaceFolder}/Authr.sln",
"--configuration",
"Release",
"/property:GenerateFullPaths=true",
Expand Down
25 changes: 25 additions & 0 deletions Authr.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.001.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authr.WebApp", "Authr.WebApp\Authr.WebApp.csproj", "{4C900255-7111-46A2-ADE5-D9AE3E9D7B95}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4C900255-7111-46A2-ADE5-D9AE3E9D7B95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4C900255-7111-46A2-ADE5-D9AE3E9D7B95}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4C900255-7111-46A2-ADE5-D9AE3E9D7B95}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4C900255-7111-46A2-ADE5-D9AE3E9D7B95}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F1586BDB-61A5-45FE-B9DD-C0EC3B7A7DFA}
EndGlobalSection
EndGlobal

0 comments on commit 1388cc7

Please sign in to comment.