From 18ba3f3365a33867374dbedd498c16e0e07cc69f Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Sat, 26 Mar 2016 14:41:30 -0700 Subject: [PATCH] Fix VS Code attach debugging configuration Needs to be `processName`, not `program`. Go figure. --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 850d235c3c..3954855c64 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,7 +17,7 @@ "type": "coreclr", "request": "attach", "justMyCode": false, - "program": "powershell" + "processName": "powershell" } ] }