1
0

tasks.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. "/property:GenerateFullPaths=true", // Ask dotnet build to generate full paths for file names.
  13. "/consoleloggerparameters:'ForceNoAlign;NoSummary'" // Do not generate summary otherwise it leads to duplicate errors in Problems panel
  14. ],
  15. "group": {
  16. "kind": "build",
  17. "isDefault": true
  18. },
  19. "presentation": {
  20. "reveal": "silent"
  21. },
  22. "problemMatcher": "$msCompile"
  23. },
  24. {
  25. "label": "build-yaml-linter",
  26. "command": "dotnet",
  27. "type": "process",
  28. "args": [
  29. "build",
  30. "${workspaceFolder}/Content.YAMLLinter/Content.YAMLLinter.csproj",
  31. "/property:GenerateFullPaths=true",
  32. "/consoleloggerparameters:'ForceNoAlign;NoSummary'"
  33. ],
  34. "problemMatcher": "$msCompile"
  35. }
  36. ]
  37. }