| 12345678910111213141516171819202122232425262728 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Launch DesktopGL",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build-desktopgl",
- "program": "${workspaceFolder}/Platforms/Desktop/bin/Debug/net8.0/GameStateManagement.DesktopGL.dll",
- "args": [],
- "cwd": "${workspaceFolder}/Platforms/Desktop",
- "console": "internalConsole",
- "stopAtEntry": false
- },
- {
- "name": "Launch Windows",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build-windows",
- "program": "${workspaceFolder}/Platforms/Windows/bin/Debug/net8.0-windows/GameStateManagement.Windows.dll",
- "args": [],
- "cwd": "${workspaceFolder}/Platforms/Windows",
- "console": "internalConsole",
- "stopAtEntry": false
- }
- ]
- }
|