{ "version": "2.0.0", "tasks": [ { "label": "build debug", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/server/AyaNova/AyaNova.csproj" ], "problemMatcher": "$msCompile", "group": { "kind": "build", "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", "type": "process", "args": [ "build", "${workspaceFolder}/server/AyaNova/AyaNova.csproj", "-c", "Release" ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": true } } ] }