PowerShell/.vscode/tasks.json

17 lines
387 B
JSON
Raw Normal View History

{
2016-04-01 19:26:50 +02:00
"version": "0.1.0",
2016-03-31 07:59:48 +02:00
"command": "powershell",
"isShellCommand": true,
2016-04-01 19:26:50 +02:00
"showOutput": "always",
2016-03-31 07:59:48 +02:00
"args": [ "-c" ],
2016-03-31 07:59:48 +02:00
"tasks": [
{
"taskName": "build",
"args": [ "Import-Module ${workspaceRoot}/PowerShellGitHubDev.psm1; Start-PSBuild" ],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
}