tasks.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-windows",
  6. "command": "dotnet",
  7. "type": "process",
  8. "args": [
  9. "build",
  10. "Platforms/Windows/2DShaderSample.Windows.csproj"
  11. ],
  12. "problemMatcher": "$msCompile"
  13. },
  14. {
  15. "label": "build-desktopgl",
  16. "command": "dotnet",
  17. "type": "process",
  18. "args": [
  19. "build",
  20. "Platforms/DesktopGL/2DShaderSample.DesktopGL.csproj"
  21. ],
  22. "problemMatcher": "$msCompile"
  23. },
  24. {
  25. "label": "build-ios",
  26. "command": "dotnet",
  27. "type": "process",
  28. "args": [
  29. "build",
  30. "Platforms/iOS/2DShaderSample.iOS.csproj"
  31. ],
  32. "problemMatcher": "$msCompile"
  33. },
  34. {
  35. "label": "build-android",
  36. "command": "dotnet",
  37. "type": "process",
  38. "args": [
  39. "build",
  40. "Platforms/Android/2DShaderSample.Android.csproj"
  41. ],
  42. "problemMatcher": "$msCompile"
  43. }
  44. ]
  45. }