PowerShell/.vscode/tasks.json
2016-05-06 10:30:48 -07:00

17 lines
401 B
JSON

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