You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix#1046
Fix warning in status bar about ThemeColor
This fix requires PSES PR 556 to eliminate one PSES cause of the debug adapter to crash.
Also npm generated a package-lock.json file which, from what I've read, should be checked in. I haven't included it in this PR - yet. Thoughts?
Also, I updated min VSCode version to 1.17.0. I'm not sure when the new DebugConfigurationProvider API was intro'd. I have tested with 1.17.2 and it works there so I'm reasonably confident it will work in 1.17.0. We might be able to reach back a bit further. We'd have to find out when this API was intro'd.
"name": "PowerShell Launch Current File w/Args Prompt",
367
370
"script": "${file}",
368
-
"args": [ "${command:SpecifyScriptArgs}" ],
371
+
"args": [
372
+
"${command:SpecifyScriptArgs}"
373
+
],
369
374
"cwd": "${file}"
370
375
},
371
376
{
@@ -425,7 +430,7 @@
425
430
"description": "Specifies the path to a PowerShell Script Analyzer settings file. To override the default settings for all projects, enter an absolute path, or enter a path relative to your workspace."
0 commit comments