tasks.json 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-desktopgl",
  6. "command": "dotnet",
  7. "type": "shell",
  8. "args": [
  9. "build",
  10. "${workspaceFolder}/Platforms/Desktop/Flocking.DesktopGL.csproj"
  11. ],
  12. "group": "build",
  13. "presentation": {
  14. "echo": true,
  15. "reveal": "silent",
  16. "focus": false,
  17. "panel": "shared"
  18. },
  19. "problemMatcher": "$msCompile"
  20. },
  21. {
  22. "label": "build-windows",
  23. "command": "dotnet",
  24. "type": "shell",
  25. "args": [
  26. "build",
  27. "${workspaceFolder}/Platforms/Windows/Flocking.Windows.csproj"
  28. ],
  29. "group": "build",
  30. "presentation": {
  31. "echo": true,
  32. "reveal": "silent",
  33. "focus": false,
  34. "panel": "shared"
  35. },
  36. "problemMatcher": "$msCompile"
  37. },
  38. {
  39. "label": "run-desktopgl",
  40. "command": "dotnet",
  41. "type": "shell",
  42. "args": [
  43. "run",
  44. "--project",
  45. "${workspaceFolder}/Platforms/Desktop/Flocking.DesktopGL.csproj"
  46. ],
  47. "group": "test",
  48. "presentation": {
  49. "echo": true,
  50. "reveal": "always",
  51. "focus": false,
  52. "panel": "shared"
  53. },
  54. "dependsOn": "build-desktopgl"
  55. },
  56. {
  57. "label": "run-windows",
  58. "command": "dotnet",
  59. "type": "shell",
  60. "args": [
  61. "run",
  62. "--project",
  63. "${workspaceFolder}/Platforms/Windows/Flocking.Windows.csproj"
  64. ],
  65. "group": "test",
  66. "presentation": {
  67. "echo": true,
  68. "reveal": "always",
  69. "focus": false,
  70. "panel": "shared"
  71. },
  72. "dependsOn": "build-windows"
  73. },
  74. {
  75. "label": "clean-desktopgl",
  76. "command": "dotnet",
  77. "type": "shell",
  78. "args": [
  79. "clean",
  80. "${workspaceFolder}/Platforms/Desktop/Flocking.DesktopGL.csproj"
  81. ],
  82. "group": "build",
  83. "presentation": {
  84. "echo": true,
  85. "reveal": "silent",
  86. "focus": false,
  87. "panel": "shared"
  88. }
  89. },
  90. {
  91. "label": "clean-windows",
  92. "command": "dotnet",
  93. "type": "shell",
  94. "args": [
  95. "clean",
  96. "${workspaceFolder}/Platforms/Windows/Flocking.Windows.csproj"
  97. ],
  98. "group": "build",
  99. "presentation": {
  100. "echo": true,
  101. "reveal": "silent",
  102. "focus": false,
  103. "panel": "shared"
  104. }
  105. },
  106. {
  107. "label": "restore-desktopgl",
  108. "command": "dotnet",
  109. "type": "shell",
  110. "args": [
  111. "restore",
  112. "${workspaceFolder}/Platforms/Desktop/Flocking.DesktopGL.csproj"
  113. ],
  114. "group": "build",
  115. "presentation": {
  116. "echo": true,
  117. "reveal": "silent",
  118. "focus": false,
  119. "panel": "shared"
  120. }
  121. },
  122. {
  123. "label": "restore-windows",
  124. "command": "dotnet",
  125. "type": "shell",
  126. "args": [
  127. "restore",
  128. "${workspaceFolder}/Platforms/Windows/Flocking.Windows.csproj"
  129. ],
  130. "group": "build",
  131. "presentation": {
  132. "echo": true,
  133. "reveal": "silent",
  134. "focus": false,
  135. "panel": "shared"
  136. }
  137. },
  138. {
  139. "label": "build-android",
  140. "command": "dotnet",
  141. "type": "shell",
  142. "args": [
  143. "build",
  144. "${workspaceFolder}/Platforms/Android/Flocking.Android.csproj"
  145. ],
  146. "group": "build",
  147. "presentation": {
  148. "echo": true,
  149. "reveal": "silent",
  150. "focus": false,
  151. "panel": "shared"
  152. },
  153. "problemMatcher": "$msCompile"
  154. },
  155. {
  156. "label": "build-ios",
  157. "command": "dotnet",
  158. "type": "shell",
  159. "args": [
  160. "build",
  161. "${workspaceFolder}/Platforms/iOS/Flocking.iOS.csproj"
  162. ],
  163. "group": "build",
  164. "presentation": {
  165. "echo": true,
  166. "reveal": "silent",
  167. "focus": false,
  168. "panel": "shared"
  169. },
  170. "problemMatcher": "$msCompile"
  171. },
  172. {
  173. "label": "run-android",
  174. "command": "dotnet",
  175. "type": "shell",
  176. "args": [
  177. "run",
  178. "--project",
  179. "${workspaceFolder}/Platforms/Android/Flocking.Android.csproj"
  180. ],
  181. "group": "test",
  182. "presentation": {
  183. "echo": true,
  184. "reveal": "always",
  185. "focus": false,
  186. "panel": "shared"
  187. },
  188. "dependsOn": "build-android"
  189. },
  190. {
  191. "label": "clean-android",
  192. "command": "dotnet",
  193. "type": "shell",
  194. "args": [
  195. "clean",
  196. "${workspaceFolder}/Platforms/Android/Flocking.Android.csproj"
  197. ],
  198. "group": "build",
  199. "presentation": {
  200. "echo": true,
  201. "reveal": "silent",
  202. "focus": false,
  203. "panel": "shared"
  204. }
  205. },
  206. {
  207. "label": "clean-ios",
  208. "command": "dotnet",
  209. "type": "shell",
  210. "args": [
  211. "clean",
  212. "${workspaceFolder}/Platforms/iOS/Flocking.iOS.csproj"
  213. ],
  214. "group": "build",
  215. "presentation": {
  216. "echo": true,
  217. "reveal": "silent",
  218. "focus": false,
  219. "panel": "shared"
  220. }
  221. },
  222. {
  223. "label": "restore-android",
  224. "command": "dotnet",
  225. "type": "shell",
  226. "args": [
  227. "restore",
  228. "${workspaceFolder}/Platforms/Android/Flocking.Android.csproj"
  229. ],
  230. "group": "build",
  231. "presentation": {
  232. "echo": true,
  233. "reveal": "silent",
  234. "focus": false,
  235. "panel": "shared"
  236. }
  237. },
  238. {
  239. "label": "restore-ios",
  240. "command": "dotnet",
  241. "type": "shell",
  242. "args": [
  243. "restore",
  244. "${workspaceFolder}/Platforms/iOS/Flocking.iOS.csproj"
  245. ],
  246. "group": "build",
  247. "presentation": {
  248. "echo": true,
  249. "reveal": "silent",
  250. "focus": false,
  251. "panel": "shared"
  252. }
  253. }
  254. ]
  255. }