tasks.json 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-windows",
  6. "type": "shell",
  7. "command": "dotnet build Platform/Windows/SpriteEffects.Windows.csproj",
  8. "group": "build",
  9. "problemMatcher": "$msCompile"
  10. },
  11. {
  12. "label": "build-desktopgl",
  13. "type": "shell",
  14. "command": "dotnet build Platform/DesktopGL/SpriteEffects.DesktopGL.csproj",
  15. "group": "build",
  16. "problemMatcher": "$msCompile"
  17. },
  18. {
  19. "label": "run-windows",
  20. "type": "shell",
  21. "command": "dotnet run --project Platform/Windows/SpriteEffects.Windows.csproj",
  22. "group": "test",
  23. "problemMatcher": []
  24. },
  25. {
  26. "label": "run-desktopgl",
  27. "type": "shell",
  28. "command": "dotnet run --project Platform/DesktopGL/SpriteEffects.DesktopGL.csproj",
  29. "group": "test",
  30. "problemMatcher": []
  31. }
  32. ]
  33. }