chore: add debugger config for vscode

This commit is contained in:
Stevan Freeborn
2025-10-10 15:38:19 -05:00
parent ff81c9ca43
commit f5e33d80cd
2 changed files with 44 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/StreamShorts.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}