{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Build Web", "type": "shell", "command": "MSBuild.exe siteserver-web.sln", "group": { "kind": "build", "isDefault": true }, "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Build Cli", "type": "shell", "command": "MSBuild.exe siteserver-cli.sln", "group": "build", "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Build All", "type": "shell", "command": "MSBuild.exe siteserver-all.sln", "group": "build", "presentation": { "reveal": "always", "panel": "new" } } ] }