tasks.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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/InputReporter.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/InputReporter.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/InputReporter.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. {
  54. "label": "run-windows",
  55. "type": "shell",
  56. "command": "dotnet run --project Platforms/Windows/InputReporter.Windows.csproj",
  57. "group": "build"
  58. },
  59. {
  60. "label": "run-desktopgl",
  61. "type": "shell",
  62. "command": "dotnet run --project Platforms/Desktop/InputReporter.DesktopGL.csproj",
  63. "group": "build"
  64. },
  65. {
  66. "label": "run-android",
  67. "type": "shell",
  68. "command": "dotnet run --project Platforms/Android/InputReporter.Android.csproj",
  69. "group": "build"
  70. }
  71. ]
  72. }