tasks.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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/LensFlare.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/DesktopGL/LensFlare.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/LensFlare.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. }