PowerShell/.vscode/tasks.json
Andrew Schwartzmeyer b8435da8db Fix up .vscode files
2016-03-30 23:30:26 -07:00

16 lines
364 B
JSON

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