tasks.json 556 B

1234567891011121314151617181920212223
  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. ],
  13. "group": {
  14. "kind": "build",
  15. "isDefault": true
  16. },
  17. "presentation": {
  18. "reveal": "silent"
  19. },
  20. "problemMatcher": "$msCompile"
  21. }
  22. ]
  23. }