tasks.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Build Windows",
  6. "type": "shell",
  7. "command": "dotnet build Platforms/Windows/ShadowMapping.Windows.csproj",
  8. "group": "build"
  9. },
  10. {
  11. "label": "Build DesktopGL",
  12. "type": "shell",
  13. "command": "dotnet build Platforms/Desktop/ShadowMapping.DesktopGL.csproj",
  14. "group": "build"
  15. },
  16. {
  17. "label": "Build Android",
  18. "type": "shell",
  19. "command": "dotnet build Platforms/Android/ShadowMapping.Android.csproj",
  20. "group": "build"
  21. },
  22. {
  23. "label": "Build iOS",
  24. "type": "shell",
  25. "command": "dotnet build Platforms/iOS/ShadowMapping.iOS.csproj",
  26. "group": "build"
  27. },
  28. {
  29. "label": "Run Windows",
  30. "type": "shell",
  31. "command": "dotnet run --project Platforms/Windows/ShadowMapping.Windows.csproj",
  32. "group": "test"
  33. },
  34. {
  35. "label": "Run DesktopGL",
  36. "type": "shell",
  37. "command": "dotnet run --project Platforms/DesktopGL/ShadowMapping.DesktopGL.csproj",
  38. "group": "test"
  39. },
  40. {
  41. "label": "Run Android",
  42. "type": "shell",
  43. "command": "dotnet run --project Platforms/Android/ShadowMapping.Android.csproj",
  44. "group": "test"
  45. },
  46. {
  47. "label": "Run iOS",
  48. "type": "shell",
  49. "command": "dotnet run --project Platforms/iOS/ShadowMapping.iOS.csproj",
  50. "group": "test"
  51. }
  52. ]
  53. }