Fix Public away from debug scripts

This commit is contained in:
2026-02-17 23:05:57 +02:00
parent 46bdad7296
commit c4c054a0c6
3 changed files with 4 additions and 4 deletions

4
.vscode/launch.json vendored
View File

@@ -9,9 +9,9 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build App API",
"program": "${workspaceFolder}/api/Public/bin/Debug/net10.0/App.dll",
"program": "${workspaceFolder}/api/App/bin/Debug/net10.0/App.dll",
"args": [],
"cwd": "${workspaceFolder}/api/Public",
"cwd": "${workspaceFolder}/api/App",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"

2
.vscode/tasks.json vendored
View File

@@ -5,7 +5,7 @@
"label": "build App API",
"type": "process",
"command": "dotnet",
"args": ["build", "${workspaceFolder}/api/Public/App.csproj"],
"args": ["build", "${workspaceFolder}/api/App/App.csproj"],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",