{ "version": "2.0.0", "tasks": [ { "label": "buildWeb", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Selector.Web/Selector.Web.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "buildCLI", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Selector.CLI/Selector.CLI.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "publish", "command": "dotnet", "type": "process", "args": [ "publish", "${workspaceFolder}/Selector.CLI/Selector.CLI.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" }, { "label": "watch", "command": "dotnet", "type": "process", "args": [ "watch", "run", "${workspaceFolder}/Selector.CLI/Selector.CLI.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], "problemMatcher": "$msCompile" } ] }