tasks.json 771 B

12345678910111213141516171819202122232425
  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. ],
  17. "group": "build",
  18. "presentation": {
  19. "reveal": "silent"
  20. },
  21. "problemMatcher": "$msCompile"
  22. }
  23. ]
  24. }