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",

View File

@@ -34,7 +34,7 @@ ensure_app_window() {
start_or_restart_services() {
ensure_app_window
tmux respawn-pane -k -t "$SESSION_NAME":app.0 -c "$UI_DIR" "bun dev"
tmux respawn-pane -k -t "$SESSION_NAME":app.1 -c "$API_DIR" "dotnet run --project $API_DIR/Public/App.csproj"
tmux respawn-pane -k -t "$SESSION_NAME":app.1 -c "$API_DIR" "dotnet run --project $API_DIR/App/App.csproj"
tmux select-pane -t "$SESSION_NAME":app.0
tmux select-window -t "$SESSION_NAME":app
}