| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Android Debug",
- "type": "mono",
- "request": "attach",
- "address": "localhost",
- "port": 10000,
- "preLaunchTask": "Debug Android Build",
- },
- {
- "name": "DesktopGL Debug",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "Debug DesktopGL Build",
- "program": "${workspaceFolder}/FuelCell.DesktopGL/bin/Debug/net8.0/FuelCell.DesktopGL.exe",
- },
- {
- "name": "iOS Debug",
- "type": "maui",
- "request": "launch",
- "preLaunchTask": "maui: Build",
- },
- {
- "name": "WindowsDX Debug",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "Debug WindowsDX Build",
- "program": "${workspaceFolder}/FuelCell.WindowsDX/bin/Debug/net8.0-windows/FuelCell.WindowsDX.exe",
- }
- ]
- }
|