launch.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "version": "2.0.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/GooCursor.Windows.exe",
  10. "args": [],
  11. "cwd": "${workspaceFolder}/Platforms/Windows",
  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/Desktop/bin/Debug/net8.0/GooCursor.DesktopGL.exe",
  21. "args": [],
  22. "cwd": "${workspaceFolder}/Platforms/Desktop",
  23. "console": "internalConsole",
  24. "stopAtEntry": false
  25. },
  26. {
  27. "name": "Attach to Windows",
  28. "type": "coreclr",
  29. "request": "attach"
  30. },
  31. {
  32. "name": "Attach to DesktopGL",
  33. "type": "coreclr",
  34. "request": "attach"
  35. }
  36. ]
  37. }