launch.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Launch Windows",
  9. "type": "coreclr",
  10. "request": "launch",
  11. "preLaunchTask": "build-windows",
  12. "program": "${workspaceFolder}/Platforms/Windows/bin/Debug/net8.0-windows/Storage.Windows.exe",
  13. "args": [],
  14. "cwd": "${workspaceFolder}",
  15. "stopAtEntry": false,
  16. "console": "internalConsole"
  17. },
  18. {
  19. "name": "Launch DesktopGL",
  20. "type": "coreclr",
  21. "request": "launch",
  22. "preLaunchTask": "build-desktopgl",
  23. "program": "${workspaceFolder}/Platforms/DesktopGL/bin/Debug/net8.0/Storage.DesktopGL.exe",
  24. "args": [],
  25. "cwd": "${workspaceFolder}",
  26. "stopAtEntry": false,
  27. "console": "internalConsole"
  28. },
  29. {
  30. "name": "Launch Android",
  31. "type": "coreclr",
  32. "request": "launch",
  33. "preLaunchTask": "build-android",
  34. "program": "${workspaceFolder}/Platforms/Android/bin/Debug/net8.0-android/Storage.Android.dll",
  35. "args": [],
  36. "cwd": "${workspaceFolder}",
  37. "stopAtEntry": false,
  38. "console": "internalConsole"
  39. },
  40. {
  41. "name": "Launch iOS",
  42. "type": "coreclr",
  43. "request": "launch",
  44. "preLaunchTask": "build-ios",
  45. "program": "${workspaceFolder}/Platforms/iOS/bin/Debug/net8.0-ios/Storage.iOS.dll",
  46. "args": [],
  47. "cwd": "${workspaceFolder}",
  48. "stopAtEntry": false,
  49. "console": "internalConsole"
  50. }
  51. ]
  52. }