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