PowerShell/.vscode/tasks.json
2016-04-01 10:26:50 -07:00

17 lines
387 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" ],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
}