launch.json 950 B

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