chore: update launch configurations and add debug build tasks

This commit is contained in:
2026-01-31 00:03:00 +01:00
parent e35f45dc4d
commit 70e115f2a0
4 changed files with 41 additions and 15 deletions

27
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Debug Build API",
"type": "process",
"command": "dotnet",
"args": [
"build",
"${workspaceFolder}/src/ASTRAIN.Api"
],
"problemMatcher": "$msCompile",
"group": "build"
},
{
"label": "Debug Build Client",
"type": "process",
"command": "dotnet",
"args": [
"build",
"${workspaceFolder}/src/ASTRAIN.Client"
],
"problemMatcher": "$msCompile",
"group": "build"
}
]
}