Rename Public -> App

This commit is contained in:
2026-02-17 22:00:59 +02:00
parent 13ca568244
commit 46bdad7296
13 changed files with 6 additions and 6 deletions

6
.vscode/launch.json vendored
View File

@@ -5,11 +5,11 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "C#: Debug Public API", "name": "C#: Debug App API",
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "build Public API", "preLaunchTask": "build App API",
"program": "${workspaceFolder}/api/Public/bin/Debug/net10.0/Public.dll", "program": "${workspaceFolder}/api/Public/bin/Debug/net10.0/App.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/api/Public", "cwd": "${workspaceFolder}/api/Public",
"stopAtEntry": false, "stopAtEntry": false,

4
.vscode/tasks.json vendored
View File

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

Binary file not shown.

View File

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