Make VS Code debug powershell with -NonInteractive

This commit is contained in:
Andrew Schwartzmeyer 2016-05-06 10:48:01 -07:00
parent 403ba4f735
commit 77ffc715dc

2
.vscode/launch.json vendored
View file

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