Files
auth-mistox/.vscode/tasks.json
T
derek d8bc76cf0b
Docker Build and Release Upload / build (push) Has been cancelled
Init commit
2025-07-24 17:10:03 -07:00

47 lines
1010 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "server-build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/Server/Server.csproj",
"-o",
"${workspaceFolder}/debug/",
],
"problemMatcher": "$msCompile"
},
{
"label": "client-build",
"command": "ng",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/src/Client"
},
"args": [
"build",
"--base-href=http://localhost:5000"
],
"problemMatcher": "$msCompile"
},
{
"label": "client-packages",
"command": "npm",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/src/Client"
},
"args": [
"install"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-all",
"dependsOn": ["client-packages", "client-build", "server-build" ],
"dependsOrder": "sequence"
}
]
}