{
"version": "2.0.0",
"tasks": [
"label": "Build",
"detail": "Builds the client and SLN",
"promptOnClose": true,
"group": "build",
"dependsOn": [
"Client Build",
"Dotnet build"
],
"problemMatcher": []
},
"label": "Client Install",
"detail": "install npm for Umbraco.Web.UI.Client",
"type": "npm",
"script": "install",
"path": "src/Umbraco.Web.UI.Client/",
"label": "Client Build",
"detail": "runs npm run build for Umbraco.Web.UI.Client",
"script": "build",
"problemMatcher": [
"$gulp-tsc"
]
"label": "Dotnet build",
"detail": "Dotnet build of SLN",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/umbraco.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
"problemMatcher": "$msCompile"
"label": "Dotnet watch",
"detail": "Dotnet run and watch of Web.UI",
"watch",
"run",
"${workspaceFolder}/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj",
}