tasks.json 4.5 KB

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