12345678910111213141516171819202122232425262728 |
- {
- // 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",
- // Ask dotnet build to generate full paths for file names.
- "/property:GenerateFullPaths=true",
- // Do not generate summary otherwise it leads to duplicate errors in Problems panel
- "/consoleloggerparameters:NoSummary",
- "/property:Configuration=Release"
- ],
- "group": {
- "kind": "build",
- "isDefault": true,
- },
- "presentation": {
- "reveal": "silent"
- },
- "problemMatcher": "$msCompile"
- }
- ]
- }
|