launch.json 937 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}/Platform/Windows/bin/Debug/net8.0-windows/SpriteEffects.Windows.exe",
  10. "args": [],
  11. "cwd": "${workspaceFolder}/Platform/Windows",
  12. "stopAtEntry": false,
  13. "console": "internalConsole"
  14. },
  15. {
  16. "name": "Launch DesktopGL",
  17. "type": "coreclr",
  18. "request": "launch",
  19. "preLaunchTask": "build-desktopgl",
  20. "program": "${workspaceFolder}/Platform/DesktopGL/bin/Debug/net8.0/SpriteEffects.DesktopGL.exe",
  21. "args": [],
  22. "cwd": "${workspaceFolder}/Platform/DesktopGL",
  23. "stopAtEntry": false,
  24. "console": "internalConsole"
  25. }
  26. ]
  27. }