tasks.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-windows",
  6. "type": "shell",
  7. "command": "dotnet",
  8. "args": ["build", "Platforms/Windows/BackgroundThreadTester.Windows.csproj"],
  9. "group": "build",
  10. "problemMatcher": "$msCompile",
  11. "presentation": {
  12. "echo": true,
  13. "reveal": "silent",
  14. "focus": false,
  15. "panel": "shared"
  16. }
  17. },
  18. {
  19. "label": "build-desktopgl",
  20. "type": "shell",
  21. "command": "dotnet",
  22. "args": ["build", "Platforms/DesktopGL/BackgroundThreadTester.DesktopGL.csproj"],
  23. "group": "build",
  24. "problemMatcher": "$msCompile",
  25. "presentation": {
  26. "echo": true,
  27. "reveal": "silent",
  28. "focus": false,
  29. "panel": "shared"
  30. }
  31. },
  32. {
  33. "label": "build-android",
  34. "type": "shell",
  35. "command": "dotnet",
  36. "args": ["build", "Platforms/Android/BackgroundThreadTester.Android.csproj"],
  37. "group": "build",
  38. "problemMatcher": "$msCompile",
  39. "presentation": {
  40. "echo": true,
  41. "reveal": "silent",
  42. "focus": false,
  43. "panel": "shared"
  44. }
  45. },
  46. {
  47. "label": "build-ios",
  48. "type": "shell",
  49. "command": "dotnet",
  50. "args": ["build", "Platforms/iOS/BackgroundThreadTester.iOS.csproj"],
  51. "group": "build",
  52. "problemMatcher": "$msCompile",
  53. "presentation": {
  54. "echo": true,
  55. "reveal": "silent",
  56. "focus": false,
  57. "panel": "shared"
  58. }
  59. },
  60. {
  61. "label": "build-core",
  62. "type": "shell",
  63. "command": "dotnet",
  64. "args": ["build", "Core/BackgroundThreadTester.Core.csproj"],
  65. "group": "build",
  66. "problemMatcher": "$msCompile",
  67. "presentation": {
  68. "echo": true,
  69. "reveal": "silent",
  70. "focus": false,
  71. "panel": "shared"
  72. }
  73. },
  74. {
  75. "label": "run-windows",
  76. "type": "shell",
  77. "command": "dotnet",
  78. "args": ["run", "--project", "Platforms/Windows/BackgroundThreadTester.Windows.csproj"],
  79. "group": "build",
  80. "problemMatcher": "$msCompile",
  81. "presentation": {
  82. "echo": true,
  83. "reveal": "always",
  84. "focus": false,
  85. "panel": "shared"
  86. },
  87. "dependsOn": "build-windows"
  88. },
  89. {
  90. "label": "run-desktopgl",
  91. "type": "shell",
  92. "command": "dotnet",
  93. "args": ["run", "--project", "Platforms/DesktopGL/BackgroundThreadTester.DesktopGL.csproj"],
  94. "group": "build",
  95. "problemMatcher": "$msCompile",
  96. "presentation": {
  97. "echo": true,
  98. "reveal": "always",
  99. "focus": false,
  100. "panel": "shared"
  101. },
  102. "dependsOn": "build-desktopgl"
  103. },
  104. {
  105. "label": "run-desktopgl",
  106. "type": "shell",
  107. "command": "dotnet",
  108. "args": ["run", "--project", "Platforms/DesktopGL/BackgroundThreadTester.DesktopGL.csproj"],
  109. "group": "build",
  110. "problemMatcher": "$msCompile",
  111. "presentation": {
  112. "echo": true,
  113. "reveal": "always",
  114. "focus": false,
  115. "panel": "shared"
  116. },
  117. "dependsOn": "build-desktopgl"
  118. },
  119. {
  120. "label": "clean",
  121. "type": "shell",
  122. "command": "dotnet",
  123. "args": ["clean"],
  124. "group": "build",
  125. "problemMatcher": "$msCompile"
  126. },
  127. {
  128. "label": "restore",
  129. "type": "shell",
  130. "command": "dotnet",
  131. "args": ["restore"],
  132. "group": "build",
  133. "problemMatcher": "$msCompile"
  134. }
  135. ]
  136. }