{ "version": "2.0.0", "tasks": [ { "label": "server-build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/src/MistoxWebsite.Server/MistoxWebsite.Server.csproj", "-o", "${workspaceFolder}/debug/" ], "problemMatcher": "$msCompile" }, { "label": "client-build", "command": "ng", "type": "process", "options": { "cwd": "${workspaceFolder}/debug/wwwroot" }, "args": [ "build" ], "problemMatcher": "$msCompile" }, { "label": "build-all", "dependsOn": ["server-build", "client-build" ], "dependsOrder": "sequence" } ] }