Make build only use debug folder

This commit is contained in:
2025-06-17 20:39:36 -07:00
parent 2014bd363a
commit 6336e39658
+2 -2
View File
@@ -18,7 +18,7 @@
"command": "ng", "command": "ng",
"type": "process", "type": "process",
"options": { "options": {
"cwd": "${workspaceFolder}/src/MistoxWebsite.Client" "cwd": "${workspaceFolder}/debug/wwwroot"
}, },
"args": [ "args": [
"build" "build"
@@ -27,7 +27,7 @@
}, },
{ {
"label": "build-all", "label": "build-all",
"dependsOn": ["client-build", "server-build" ], "dependsOn": ["server-build", "client-build" ],
"dependsOrder": "sequence" "dependsOrder": "sequence"
} }
] ]