Fix compile and debug

This commit is contained in:
derek holloway
2026-02-13 14:49:41 -08:00
parent c8eedf6d7c
commit 37530cc6a3
2 changed files with 16 additions and 10 deletions
+15 -10
View File
@@ -1,12 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "dotnet",
"task": "build",
"group": "build",
"problemMatcher": [],
"label": "dotnet: build"
}
]
"version": "2.0.0",
"tasks": [
{
"label": "server-build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/WebServer/WebServer.csproj",
"-o",
"${workspaceFolder}/WebServer/bin/Debug/net9.0/",
],
"problemMatcher": "$msCompile"
},
]
}