refactor: added server project

This commit is contained in:
2025-06-06 23:54:03 +03:00
parent b835fb1582
commit 2294c06bf9
9 changed files with 142 additions and 66 deletions

17
.vscode/launch.json vendored
View File

@@ -28,8 +28,19 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/Platforms/Server/bin/Debug/net9.0/Server.exe",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": ".NET Launch (Host)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/Platforms/Desktop/bin/Debug/net9.0/Desktop.exe",
"args": ["-server"],
"args": ["--server"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
@@ -37,8 +48,8 @@
],
"compounds": [
{
"name": ".NET Launch 1 Client & 1 Server",
"configurations": [".NET Launch (Server)", ".NET Launch (Client) 1"]
"name": ".NET Launch Client & Host",
"configurations": [".NET Launch (Host)", ".NET Launch (Client) 1"]
},
{
"name": ".NET Launch 2 Client & 1 Server",