Use -Output switch to fix VS Code debugging story

This commit is contained in:
Andrew Schwartzmeyer 2016-05-06 10:30:48 -07:00
parent eb92b28965
commit 403ba4f735
2 changed files with 2 additions and 2 deletions

2
.vscode/launch.json vendored
View file

@ -7,7 +7,7 @@
"request": "launch",
"justMyCode": false,
"stopAtEntry": true,
"program": "${workspaceRoot}/bin/powershell",
"program": "${workspaceRoot}/debug/powershell",
"args": [ ],
"preLaunchTask": "build",
"cwd": "${workspaceRoot}"

2
.vscode/tasks.json vendored
View file

@ -8,7 +8,7 @@
"tasks": [
{
"taskName": "build",
"args": [ "Import-Module ${workspaceRoot}/PowerShellGitHubDev.psm1; Start-PSBuild" ],
"args": [ "Import-Module ${workspaceRoot}/PowerShellGitHubDev.psm1; Start-PSBuild -Output debug" ],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
}