chore: .vscode Location

This commit is contained in:
Syntriax 2024-02-04 12:22:17 +03:00
parent fe5a08840c
commit 0d62e5c986
3 changed files with 7 additions and 4 deletions

View File

@ -10,9 +10,9 @@
"request": "launch", "request": "launch",
"preLaunchTask": "build", "preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path. // If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net8.0/${workspaceFolderBasename}.dll", "program": "${workspaceFolder}/Game/bin/Debug/net8.0/Game.dll",
"args": [], "args": ["server"],
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}/Game",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole", "console": "internalConsole",
"stopAtEntry": false "stopAtEntry": false

View File

@ -9,7 +9,10 @@
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
}, },
"label": "build" "label": "build",
"options": {
"cwd": "${workspaceFolder}/Game"
}
} }
] ]
} }