VS Code debug configurations

This commit is contained in:
2026-02-17 20:25:48 +02:00
parent 778e8e6b18
commit a7622c2a5d
2 changed files with 45 additions and 0 deletions

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

@@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build Public API",
"type": "process",
"command": "dotnet",
"args": ["build", "${workspaceFolder}/api/Public/Public.csproj"],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}