diff --git a/Game/.vscode/launch.json b/.vscode/launch.json similarity index 84% rename from Game/.vscode/launch.json rename to .vscode/launch.json index cfb97f2..1c226b7 100644 --- a/Game/.vscode/launch.json +++ b/.vscode/launch.json @@ -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/net8.0/${workspaceFolderBasename}.dll", - "args": [], - "cwd": "${workspaceFolder}", + "program": "${workspaceFolder}/Game/bin/Debug/net8.0/Game.dll", + "args": ["server"], + "cwd": "${workspaceFolder}/Game", // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console "console": "internalConsole", "stopAtEntry": false diff --git a/Game/.vscode/settings.json b/.vscode/settings.json similarity index 100% rename from Game/.vscode/settings.json rename to .vscode/settings.json diff --git a/Game/.vscode/tasks.json b/.vscode/tasks.json similarity index 70% rename from Game/.vscode/tasks.json rename to .vscode/tasks.json index e324491..7c10596 100644 --- a/Game/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,7 +9,10 @@ "kind": "build", "isDefault": true }, - "label": "build" + "label": "build", + "options": { + "cwd": "${workspaceFolder}/Game" + } } ] }