PowerShell/.vscode/tasks.json

18 lines
440 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",
"suppressTaskName": true,
"args": [ "-command" ],
2016-03-31 07:59:48 +02:00
"tasks": [
{
"taskName": "build",
2016-10-05 19:47:33 +02:00
"args": [ "Import-Module ${workspaceRoot}/build.psm1; Start-PSBuild -Output ${workspaceRoot}/debug" ],
2016-03-31 07:59:48 +02:00
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
}