tasks.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-windows",
  6. "type": "shell",
  7. "command": "dotnet build Platforms/Windows/NetworkStateManagement.Windows.csproj",
  8. "group": "build"
  9. },
  10. {
  11. "label": "build-desktopgl",
  12. "type": "shell",
  13. "command": "dotnet build Platforms/Desktop/NetworkStateManagement.DesktopGL.csproj",
  14. "group": "build"
  15. },
  16. {
  17. "label": "build-android",
  18. "type": "shell",
  19. "command": "dotnet build Platforms/Android/NetworkStateManagement.Android.csproj",
  20. "group": "build"
  21. },
  22. {
  23. "label": "build-ios",
  24. "type": "shell",
  25. "command": "dotnet build Platforms/iOS/NetworkStateManagement.iOS.csproj",
  26. "group": "build"
  27. },
  28. {
  29. "label": "run-windows",
  30. "type": "shell",
  31. "command": "dotnet run --project Platforms/Windows/NetworkStateManagement.Windows.csproj",
  32. "group": "test"
  33. },
  34. {
  35. "label": "run-desktopgl",
  36. "type": "shell",
  37. "command": "dotnet run --project Platforms/Desktop/NetworkStateManagement.DesktopGL.csproj",
  38. "group": "test"
  39. }
  40. ]
  41. }