{ "version": "2.0.0", "tasks": [ { "label": "build_blog", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Blog.sln", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "publish_blog", "command": "dotnet", "type": "process", "args": [ "publish", "${workspaceFolder}/Blog.sln", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;ForceNoAlign" ], "problemMatcher": "$msCompile" }, { "label": "watch_blog", "command": "dotnet", "type": "process", "args": [ "watch", "run", "--project", "${workspaceFolder}/Blog.sln" ], "problemMatcher": "$msCompile" } ] }