launch.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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/StateObjectWindows.exe",
  10. "args": [],
  11. "cwd": "${workspaceFolder}/Platforms/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}/Platforms/DesktopGL/bin/Debug/net8.0/StateObjectDesktopGL.exe",
  21. "args": [],
  22. "cwd": "${workspaceFolder}/Platforms/DesktopGL",
  23. "stopAtEntry": false,
  24. "console": "internalConsole"
  25. },
  26. {
  27. "name": "Launch Android",
  28. "type": "coreclr",
  29. "request": "launch",
  30. "preLaunchTask": "build-android",
  31. "program": "${workspaceFolder}/Platforms/Android/bin/Debug/net8.0-android/StateObjectAndroid.dll",
  32. "args": [],
  33. "cwd": "${workspaceFolder}/Platforms/Android",
  34. "stopAtEntry": false,
  35. "console": "internalConsole"
  36. },
  37. {
  38. "name": "Launch iOS",
  39. "type": "coreclr",
  40. "request": "launch",
  41. "preLaunchTask": "build-ios",
  42. "program": "${workspaceFolder}/Platforms/iOS/bin/Debug/net8.0-ios/StateObjectiOS.dll",
  43. "args": [],
  44. "cwd": "${workspaceFolder}/Platforms/iOS",
  45. "stopAtEntry": false,
  46. "console": "internalConsole"
  47. }
  48. ]
  49. }