We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1f46ca commit d431617Copy full SHA for d431617
src/platform.ts
@@ -180,13 +180,10 @@ export class PowerShellExeFinder {
180
break;
181
}
182
183
- // TODO:
184
- // Enable this when the global tool has been updated
185
- // to support proper argument passing.
186
- // Currently it cannot take startup arguments to start PSES with.
187
- //
188
// Look for the .NET global tool
189
- // yield this.findPSCoreDotnetGlobalTool();
+ // Some older versions of PowerShell have a bug in this where startup will fail,
+ // but this is fixed in newer versions
+ yield this.findPSCoreDotnetGlobalTool();
190
191
// Look for PSCore preview
192
yield this.findPSCorePreview();
0 commit comments