tasks.json 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-windows",
  6. "command": "dotnet",
  7. "type": "shell",
  8. "args": [
  9. "build",
  10. "RockRain.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. "RockRain.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. "RockRain.Android.csproj",
  43. "/property:GenerateFullPaths=true",
  44. "/consoleloggerparameters:NoSummary"
  45. ],
  46. "group": "build",
  47. "presentation": {
  48. "reveal": "always"
  49. },
  50. "problemMatcher": "$msCompile"
  51. },
  52. {
  53. "label": "build-ios",
  54. "command": "dotnet",
  55. "type": "shell",
  56. "args": [
  57. "build",
  58. "RockRain.iOS.csproj",
  59. "/property:GenerateFullPaths=true",
  60. "/consoleloggerparameters:NoSummary"
  61. ],
  62. "group": "build",
  63. "presentation": {
  64. "reveal": "always"
  65. },
  66. "problemMatcher": "$msCompile"
  67. },
  68. {
  69. "label": "run-windows",
  70. "command": "dotnet",
  71. "type": "shell",
  72. "args": [
  73. "run",
  74. "--project",
  75. "RockRain.Windows.csproj"
  76. ],
  77. "group": "test",
  78. "presentation": {
  79. "reveal": "always"
  80. },
  81. "problemMatcher": "$msCompile",
  82. "dependsOn": "build-windows"
  83. },
  84. {
  85. "label": "build-windows",
  86. "type": "shell",
  87. "command": "dotnet",
  88. "args": [
  89. "build",
  90. "Platforms/Windows/RockRain.Windows.csproj",
  91. "/property:GenerateFullPaths=true",
  92. "/consoleloggerparameters:NoSummary"
  93. ],
  94. "group": "build"
  95. },
  96. {
  97. "label": "build-desktopgl",
  98. "type": "shell",
  99. "command": "dotnet",
  100. "args": [
  101. "build",
  102. "Platforms/Desktop/RockRain.DesktopGL.csproj",
  103. "/property:GenerateFullPaths=true",
  104. "/consoleloggerparameters:NoSummary"
  105. ],
  106. "group": "build"
  107. },
  108. {
  109. "label": "build-android",
  110. "type": "shell",
  111. "command": "dotnet",
  112. "args": [
  113. "build",
  114. "Platforms/Android/RockRain.Android.csproj",
  115. "/property:GenerateFullPaths=true",
  116. "/consoleloggerparameters:NoSummary"
  117. ],
  118. "group": "build"
  119. },
  120. {
  121. "label": "build-ios",
  122. "type": "shell",
  123. "command": "dotnet",
  124. "args": [
  125. "build",
  126. "Platforms/iOS/RockRain.iOS.csproj",
  127. "/property:GenerateFullPaths=true",
  128. "/consoleloggerparameters:NoSummary"
  129. ],
  130. "group": "build"
  131. },
  132. {
  133. "label": "run-windows",
  134. "type": "shell",
  135. "command": "dotnet",
  136. "args": [
  137. "run",
  138. "--project",
  139. "Platforms/Windows/RockRain.Windows.csproj"
  140. ],
  141. "group": "test",
  142. "dependsOn": "build-windows"
  143. },
  144. {
  145. "label": "run-desktopgl",
  146. "type": "shell",
  147. "command": "dotnet",
  148. "args": [
  149. "run",
  150. "--project",
  151. "Platforms/Desktop/RockRain.DesktopGL.csproj"
  152. ],
  153. "group": "test",
  154. "dependsOn": "build-desktopgl"
  155. },
  156. {
  157. "label": "run-android",
  158. "type": "shell",
  159. "command": "dotnet",
  160. "args": [
  161. "run",
  162. "--project",
  163. "Platforms/Android/RockRain.Android.csproj"
  164. ],
  165. "group": "test",
  166. "dependsOn": "build-android"
  167. },
  168. {
  169. "label": "run-ios",
  170. "type": "shell",
  171. "command": "dotnet",
  172. "args": [
  173. "run",
  174. "--project",
  175. "Platforms/iOS/RockRain.iOS.csproj"
  176. ],
  177. "group": "test",
  178. "dependsOn": "build-ios"
  179. },