This commit is contained in:
Vendored
+31
-1
@@ -7,11 +7,41 @@
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"${workspaceFolder}/boredcareers/boredcareers.csproj",
|
||||
"${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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user