launch.json 905 B

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