Adding ability to do a perpetual build and a subscription build automatically and also be able to debug either one

This commit is contained in:
2022-08-16 23:19:23 +00:00
parent aa03db0aef
commit ea766e68b8
8 changed files with 194 additions and 43 deletions

16
.vscode/tasks.json vendored
View File

@@ -15,6 +15,22 @@
"isDefault": true
}
},
{
"label": "build debug subscription",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/server/AyaNova/AyaNova.csproj",
"-p",
"SUBSCRIPTION_BUILD=true"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build release",
"command": "dotnet",