Suppressing taskname in tasks.json so 'build' is not being sent as cmd

This commit is contained in:
v-alexjo 2016-05-24 15:50:09 -07:00
parent 288a4df071
commit d3e2ef5307

5
.vscode/tasks.json vendored
View file

@ -3,12 +3,13 @@
"command": "powershell",
"isShellCommand": true,
"showOutput": "always",
"args": [ "-c" ],
"suppressTaskName": true,
"args": [ "-command" ],
"tasks": [
{
"taskName": "build",
"args": [ "Import-Module ${workspaceRoot}/PowerShellGitHubDev.psm1; Start-PSBuild -Output debug" ],
"args": [ "Import-Module ${workspaceRoot}/build.psm1; Start-PSBuild -Output debug" ],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}