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
Copy file name to clipboardExpand all lines: package.json
+27
Original file line number
Diff line number
Diff line change
@@ -400,6 +400,33 @@
400
400
"isExecutable": true,
401
401
"description": "Specifies the full path to a PowerShell executable. Changes the installation of PowerShell used for language and debugging services."
402
402
},
403
+
"powershell.powerShellAdditionalExePaths": {
404
+
"type":"array",
405
+
"description": "Specifies an array of versionName / exePath pairs where exePath points to a non-standard install location for PowerShell and versionName can be used to reference this path with the powershell.powerShellDefaultVersion setting.",
406
+
"isExecutable": true,
407
+
"uniqueItems": true,
408
+
"items": {
409
+
"type": "object",
410
+
"required":[
411
+
"versionName",
412
+
"exePath"
413
+
],
414
+
"properties": {
415
+
"versionName": {
416
+
"type":"string",
417
+
"description": "Specifies the version name of this PowerShell executable. The version name can be referenced via the powershell.powerShellDefaultVersion setting."
418
+
},
419
+
"exePath": {
420
+
"type":"string",
421
+
"description": "Specifies the path to the PowerShell executable. Typically this is a path to a non-standard install location."
422
+
}
423
+
}
424
+
}
425
+
},
426
+
"powershell.powerShellDefaultVersion": {
427
+
"type":"string",
428
+
"description": "Specifies the name of the PowerShell version used in the startup session when the extension loads e.g \"Windows PowerShell (x86)\" or \"PowerShell Core 6.0.2 (x64)\"."
0 commit comments