{ "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Service.csproj" ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": true } }, { "label": "publish", "type": "shell", "presentation": { "reveal": "always", "panel": "shared" }, "options": { "cwd": "${workspaceFolder}" }, "windows": { "command": "${cwd}\\publish.bat" }, "problemMatcher": [], "group": "build" } ] }