tasks.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-desktopgl",
  6. "command": "dotnet",
  7. "type": "process",
  8. "args": [
  9. "build",
  10. "${workspaceFolder}/Platforms/Desktop/FloodControl.DesktopGL.csproj",
  11. "/property:GenerateFullPaths=true",
  12. "/consoleloggerparameters:NoSummary;ForceNoAlign"
  13. ],
  14. "group": "build",
  15. "presentation": {
  16. "reveal": "silent"
  17. },
  18. "problemMatcher": "$msCompile"
  19. },
  20. {
  21. "label": "build-windows",
  22. "command": "dotnet",
  23. "type": "process",
  24. "args": [
  25. "build",
  26. "${workspaceFolder}/Platforms/Windows/FloodControl.Windows.csproj",
  27. "/property:GenerateFullPaths=true",
  28. "/consoleloggerparameters:NoSummary;ForceNoAlign"
  29. ],
  30. "group": "build",
  31. "presentation": {
  32. "reveal": "silent"
  33. },
  34. "problemMatcher": "$msCompile"
  35. },
  36. {
  37. "label": "build-android",
  38. "command": "dotnet",
  39. "type": "process",
  40. "args": [
  41. "build",
  42. "${workspaceFolder}/Platforms/Android/FloodControl.Android.csproj",
  43. "/property:GenerateFullPaths=true",
  44. "/consoleloggerparameters:NoSummary;ForceNoAlign"
  45. ],
  46. "group": "build",
  47. "presentation": {
  48. "reveal": "silent"
  49. },
  50. "problemMatcher": "$msCompile"
  51. },
  52. {
  53. "label": "build-ios",
  54. "command": "dotnet",
  55. "type": "process",
  56. "args": [
  57. "build",
  58. "${workspaceFolder}/Platforms/iOS/FloodControl.iOS.csproj",
  59. "/property:GenerateFullPaths=true",
  60. "/consoleloggerparameters:NoSummary;ForceNoAlign"
  61. ],
  62. "group": "build",
  63. "presentation": {
  64. "reveal": "silent"
  65. },
  66. "problemMatcher": "$msCompile"
  67. }
  68. ]
  69. }