PowerShell/.vscode/tasks.json

16 lines
364 B
JSON
Raw Normal View History

{
2016-03-31 07:59:48 +02:00
"command": "powershell",
"isShellCommand": true,
"showOutput": "verbose",
"args": [ "-c" ],
2016-03-31 07:59:48 +02:00
"tasks": [
{
"taskName": "build",
"args": [ "Import-Module ${workspaceRoot}/PowerShellGitHubDev.psm1; Start-PSBuild" ],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}
]
}