{ "version": "2.0.0", "tasks": [ { "args": [ "format", "--report", ".vscode", "--verbosity", "detailed", "--severity", "warn" ], "command": "dotnet", "label": "Format", "problemMatcher": "$msCompile", "type": "process" }, { "args": [ "format", "whitespace" ], "command": "dotnet", "label": "Format Whitespaces", "problemMatcher": "$msCompile", "type": "process" }, { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "publish", "command": "dotnet", "type": "process", "args": [ "publish", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "watch", "command": "dotnet", "type": "process", "args": [ "watch", "run" ], "problemMatcher": "$msCompile" } ] }