launch.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Android Debug",
  9. "type": "mono",
  10. "request": "attach",
  11. "address": "localhost",
  12. "port": 10000,
  13. "preLaunchTask": "Debug Android Build",
  14. },
  15. {
  16. "name": "DesktopGL Debug",
  17. "type": "coreclr",
  18. "request": "launch",
  19. "preLaunchTask": "Debug DesktopGL Build",
  20. "program": "${workspaceFolder}/FuelCell.DesktopGL/bin/Debug/net8.0/FuelCell.DesktopGL.exe",
  21. },
  22. {
  23. "name": "iOS Debug",
  24. "type": "maui",
  25. "request": "launch",
  26. "preLaunchTask": "maui: Build",
  27. },
  28. {
  29. "name": "WindowsDX Debug",
  30. "type": "coreclr",
  31. "request": "launch",
  32. "preLaunchTask": "Debug WindowsDX Build",
  33. "program": "${workspaceFolder}/FuelCell.WindowsDX/bin/Debug/net8.0-windows/FuelCell.WindowsDX.exe",
  34. }
  35. ]
  36. }