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