tasks.json 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-windows",
  6. "command": "dotnet",
  7. "type": "process",
  8. "args": [
  9. "build",
  10. "${workspaceFolder}/Platforms/Windows/PerPixelCollisionSample.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": "process",
  24. "args": [
  25. "build",
  26. "${workspaceFolder}/Platforms/Desktop/PerPixelCollisionSample.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": "process",
  40. "args": [
  41. "build",
  42. "${workspaceFolder}/Platforms/Android/PerPixelCollisionSample.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": "process",
  56. "args": [
  57. "run",
  58. "--project",
  59. "${workspaceFolder}/Platforms/Windows/PerPixelCollisionSample.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": "process",
  72. "args": [
  73. "run",
  74. "--project",
  75. "${workspaceFolder}/Platforms/Desktop/PerPixelCollisionSample.DesktopGL.csproj"
  76. ],
  77. "group": "test",
  78. "presentation": {
  79. "reveal": "always",
  80. "panel": "new"
  81. },
  82. "dependsOn": "build-desktopgl"
  83. },
  84. {
  85. "label": "build-ios",
  86. "command": "dotnet",
  87. "type": "process",
  88. "args": [
  89. "build",
  90. "${workspaceFolder}/Platforms/iOS/PerPixelCollisionSample.iOS.csproj",
  91. "/property:GenerateFullPaths=true",
  92. "/consoleloggerparameters:NoSummary"
  93. ],
  94. "group": "build",
  95. "presentation": {
  96. "reveal": "silent"
  97. },
  98. "problemMatcher": "$msCompile"
  99. },
  100. {
  101. "label": "build-android",
  102. "command": "dotnet",
  103. "type": "process",
  104. "args": [
  105. "build",
  106. "${workspaceFolder}/Platforms/Android/PerPixelCollisionSample.Android.csproj",
  107. "/property:GenerateFullPaths=true",
  108. "/consoleloggerparameters:NoSummary"
  109. ],
  110. "group": "build",
  111. "presentation": {
  112. "reveal": "silent"
  113. },
  114. "problemMatcher": "$msCompile"
  115. },
  116. {
  117. "label": "run-android",
  118. "command": "dotnet",
  119. "type": "process",
  120. "args": [
  121. "run",
  122. "--project",
  123. "${workspaceFolder}/Platforms/Android/PerPixelCollisionSample.Android.csproj"
  124. ],
  125. "group": "test",
  126. "presentation": {
  127. "reveal": "always",
  128. "panel": "new"
  129. },
  130. "dependsOn": "build-android"
  131. },
  132. {
  133. "label": "run-ios",
  134. "command": "dotnet",
  135. "type": "process",
  136. "args": [
  137. "run",
  138. "--project",
  139. "${workspaceFolder}/Platforms/iOS/PerPixelCollisionSample.iOS.csproj"
  140. ],
  141. "group": "test",
  142. "presentation": {
  143. "reveal": "always",
  144. "panel": "new"
  145. },
  146. "dependsOn": "build-ios"
  147. },
  148. {
  149. "label": "clean-windows",
  150. "command": "dotnet",
  151. "type": "process",
  152. "args": [
  153. "clean",
  154. "${workspaceFolder}/PerPixelCollisionSample.Windows.csproj",
  155. "/property:GenerateFullPaths=true",
  156. "/consoleloggerparameters:NoSummary"
  157. ],
  158. "group": "build",
  159. "presentation": {
  160. "reveal": "silent"
  161. },
  162. "problemMatcher": "$msCompile"
  163. },
  164. {
  165. "label": "clean-desktopgl",
  166. "command": "dotnet",
  167. "type": "process",
  168. "args": [
  169. "clean",
  170. "${workspaceFolder}/PerPixelCollisionSample.DesktopGL.csproj",
  171. "/property:GenerateFullPaths=true",
  172. "/consoleloggerparameters:NoSummary"
  173. ],
  174. "group": "build",
  175. "presentation": {
  176. "reveal": "silent"
  177. },
  178. "problemMatcher": "$msCompile"
  179. }
  180. ]
  181. }