tasks.json 4.0 KB

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