tasks.json 897 B

12345678910111213141516171819202122232425262728
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "build",
  8. "command": "dotnet",
  9. "type": "shell",
  10. "args": [
  11. "build",
  12. // Ask dotnet build to generate full paths for file names.
  13. "/property:GenerateFullPaths=true",
  14. // Do not generate summary otherwise it leads to duplicate errors in Problems panel
  15. "/consoleloggerparameters:NoSummary",
  16. "/property:Configuration=Release"
  17. ],
  18. "group": {
  19. "kind": "build",
  20. "isDefault": true
  21. },
  22. "presentation": {
  23. "reveal": "silent"
  24. },
  25. "problemMatcher": "$msCompile"
  26. }
  27. ]
  28. }