tasks.json 607 B

123456789101112131415161718192021222324
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build",
  6. "command": "dotnet",
  7. "type": "shell",
  8. "args": [
  9. "build",
  10. "/property:GenerateFullPaths=true",
  11. "/consoleloggerparameters:NoSummary",
  12. "/property:Configuration=Release"
  13. ],
  14. "group": {
  15. "kind": "build",
  16. "isDefault": true
  17. },
  18. "presentation": {
  19. "reveal": "silent"
  20. },
  21. "problemMatcher": "$msCompile"
  22. }
  23. ]
  24. }