tasks.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-windows",
  6. "type": "shell",
  7. "command": "dotnet build Platforms/Windows/StateObject.Windows.csproj",
  8. "group": "build",
  9. "problemMatcher": "$msCompile"
  10. },
  11. {
  12. "label": "build-desktopgl",
  13. "type": "shell",
  14. "command": "dotnet build Platforms/DesktopGL/StateObject.DesktopGL.csproj",
  15. "group": "build",
  16. "problemMatcher": "$msCompile"
  17. },
  18. {
  19. "label": "build-android",
  20. "type": "shell",
  21. "command": "dotnet build Platforms/Android/StateObject.Android.csproj",
  22. "group": "build",
  23. "problemMatcher": "$msCompile"
  24. },
  25. {
  26. "label": "build-ios",
  27. "type": "shell",
  28. "command": "dotnet build Platforms/iOS/StateObject.iOS.csproj",
  29. "group": "build",
  30. "problemMatcher": "$msCompile"
  31. },
  32. {
  33. "label": "run-windows",
  34. "type": "shell",
  35. "command": "dotnet run --project Platforms/Windows/StateObject.Windows.csproj",
  36. "group": "test",
  37. "problemMatcher": []
  38. },
  39. {
  40. "label": "run-desktopgl",
  41. "type": "shell",
  42. "command": "dotnet run --project Platforms/DesktopGL/StateObject.DesktopGL.csproj",
  43. "group": "test",
  44. "problemMatcher": []
  45. },
  46. {
  47. "label": "run-android",
  48. "type": "shell",
  49. "command": "dotnet run --project Platforms/Android/StateObject.Android.csproj",
  50. "group": "test",
  51. "problemMatcher": []
  52. },
  53. {
  54. "label": "run-ios",
  55. "type": "shell",
  56. "command": "dotnet run --project Platforms/iOS/StateObject.iOS.csproj",
  57. "group": "test",
  58. "problemMatcher": []
  59. }
  60. ]
  61. }