PowerShell/.vscode/tasks.json
2016-10-05 10:47:33 -07:00

18 lines
440 B
JSON

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