launch.json 873 B

123456789101112131415161718192021222324252627
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Launch Windows",
  6. "type": "coreclr",
  7. "request": "launch",
  8. "preLaunchTask": "build-windows",
  9. "program": "${workspaceFolder}/Platforms/Windows/bin/Debug/net8.0-windows/LensFlare.exe",
  10. "args": [],
  11. "cwd": "${workspaceFolder}",
  12. "console": "internalConsole",
  13. "stopAtEntry": false
  14. },
  15. {
  16. "name": "Launch DesktopGL",
  17. "type": "coreclr",
  18. "request": "launch",
  19. "preLaunchTask": "build-desktopgl",
  20. "program": "${workspaceFolder}/Platforms/DesktopGL/bin/Debug/net8.0/LensFlare",
  21. "args": [],
  22. "cwd": "${workspaceFolder}",
  23. "console": "internalConsole",
  24. "stopAtEntry": false
  25. }
  26. ]
  27. }