Fix VS Code attach debugging configuration

Needs to be `processName`, not `program`. Go figure.
This commit is contained in:
Andrew Schwartzmeyer 2016-03-26 14:41:30 -07:00
parent fe8f012f8e
commit 18ba3f3365

2
.vscode/launch.json vendored
View file

@ -17,7 +17,7 @@
"type": "coreclr",
"request": "attach",
"justMyCode": false,
"program": "powershell"
"processName": "powershell"
}
]
}