Engine-Pong/.vscode/launch.json

34 lines
875 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Launch (Client)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/Platforms/Desktop/bin/Debug/net9.0/Desktop.exe",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": ".NET Launch (Server)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/Platforms/Desktop/bin/Debug/net9.0/Desktop.exe",
"args": ["-server"],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
}
],
"compounds": [
{
"name": ".NET Launch Both",
"configurations": [".NET Launch (Server)", ".NET Launch (Client)"]
}
]
}