| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Launch DesktopGL",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build-desktopgl",
- "program": "${workspaceFolder}/Platforms/Desktop/bin/Debug/net8.0/FloodControl.dll",
- "args": [],
- "cwd": "${workspaceFolder}/Platforms/Desktop",
- "console": "internalConsole",
- "stopAtEntry": false,
- "justMyCode": true
- },
- {
- "name": "Launch Windows",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build-windows",
- "program": "${workspaceFolder}/Platforms/Windows/bin/Debug/net8.0-windows/FloodControl.dll",
- "args": [],
- "cwd": "${workspaceFolder}/Platforms/Windows",
- "console": "internalConsole",
- "stopAtEntry": false,
- "justMyCode": true,
- "requireExactSource": false
- },
- {
- "name": "Launch Android",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build-android",
- "program": "${workspaceFolder}/Platforms/Android/bin/Debug/net8.0-android/FloodControl.dll",
- "args": [],
- "cwd": "${workspaceFolder}/Platforms/Android",
- "console": "internalConsole",
- "stopAtEntry": false,
- "justMyCode": true
- },
- {
- "name": "Launch iOS",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build-ios",
- "program": "${workspaceFolder}/Platforms/iOS/bin/Debug/net8.0-ios/FloodControl.dll",
- "args": [],
- "cwd": "${workspaceFolder}/Platforms/iOS",
- "console": "internalConsole",
- "stopAtEntry": false,
- "justMyCode": true
- }
- ]
- }
|