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 support for loading both host-specific and host-agnostic
profile scripts for both the current user and all users on the same
system. For VS Code, the profile names are Microsoft.VSCode_profile.ps1
and profile.ps1. The new 'enableProfileLoading' setting controls whether
profiles are loaded automatically when the language server starts up. For
now this setting is turned off by default.
ResolvesPowerShell#124.
"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."
230
237
},
238
+
"powershell.enableProfileLoading": {
239
+
"type": "boolean",
240
+
"default": false,
241
+
"description": "If true, causes user and system wide profiles (profile.ps1 and Microsoft.VSCode_profile.ps1) to be loaded into the PowerShell session. This affects IntelliSense and interactive script execution. The debugger is not affected by this setting."
0 commit comments