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
@@ -206,15 +206,20 @@
206
206
"type": "object",
207
207
"title": "PowerShell Configuration",
208
208
"properties": {
209
+
"powershell.useX86Host": {
210
+
"type": "boolean",
211
+
"default": false,
212
+
"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."
213
+
},
209
214
"powershell.scriptAnalysis.enable": {
210
215
"type": "boolean",
211
216
"default": true,
212
217
"description": "Enables real-time script analysis using PowerShell Script Analyzer."
0 commit comments