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/launch.json vendored
View File

@@ -10,9 +10,9 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net9.0/Berufsschule_HAM.dll",
"program": "${workspaceFolder}/src/bin/Debug/net8.0/Berufsschule_HAM.dll",
"args": [],
"cwd": "${workspaceFolder}",
"cwd": "${workspaceFolder}/src",
"stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
@@ -23,7 +23,7 @@
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
"/Views": "${workspaceFolder}/src/Views"
}
},
{