| 12345678910111213141516171819202122232425262728293031323334353637 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build",
- "command": "dotnet",
- "type": "shell",
- "args": [
- "build",
- "/property:GenerateFullPaths=true", // Ask dotnet build to generate full paths for file names.
- "/consoleloggerparameters:'ForceNoAlign;NoSummary'" // Do not generate summary otherwise it leads to duplicate errors in Problems panel
- ],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "presentation": {
- "reveal": "silent"
- },
- "problemMatcher": "$msCompile"
- },
- {
- "label": "build-yaml-linter",
- "command": "dotnet",
- "type": "process",
- "args": [
- "build",
- "${workspaceFolder}/Content.YAMLLinter/Content.YAMLLinter.csproj",
- "/property:GenerateFullPaths=true",
- "/consoleloggerparameters:'ForceNoAlign;NoSummary'"
- ],
- "problemMatcher": "$msCompile"
- }
- ]
- }
|