Fixed bug: Debugging in VSCode is broken

This commit is contained in:
2025-09-28 21:48:23 +02:00
parent 62e1017dff
commit f6381d3608
2 changed files with 6 additions and 6 deletions

6
.vscode/tasks.json vendored
View File

@@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/Berufsschule_HAM.sln",
"${workspaceFolder}/src/Berufsschule_HAM.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
@@ -19,7 +19,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Berufsschule_HAM.sln",
"${workspaceFolder}/src/Berufsschule_HAM.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
@@ -33,7 +33,7 @@
"watch",
"run",
"--project",
"${workspaceFolder}/Berufsschule_HAM.sln"
"${workspaceFolder}/src/Berufsschule_HAM.sln"
],
"problemMatcher": "$msCompile"
}