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

View File

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