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
This change adds a new 'useX86Host' setting for the language service which
causes the 32-bit host to be launched in 64-bit Windows.
Part of the solution for #55.
Copy file name to clipboardExpand all lines: package.json
+7-2
Original file line number
Diff line number
Diff line change
@@ -221,15 +221,20 @@
221
221
"type": "object",
222
222
"title": "PowerShell Configuration",
223
223
"properties": {
224
+
"powershell.useX86Host": {
225
+
"type": "boolean",
226
+
"default": false,
227
+
"description": "If true, causes the 32-bit language service to be used on 64-bit Windows. On 32-bit Windows this setting has no effect. This setting does not affect the debugger which has its own architecture configuration."
228
+
},
224
229
"powershell.scriptAnalysis.enable": {
225
230
"type": "boolean",
226
231
"default": true,
227
232
"description": "Enables real-time script analysis using PowerShell Script Analyzer."
0 commit comments