Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(vscode): Add dotnet executable path in list runtimes command #6559

Merged
merged 1 commit into from
Oct 18, 2023

Conversation

ccastrotrejo
Copy link
Contributor

Main Code Changes

  • Add dotnetExecutablePath to the list runtimes command the same way it does to info command

@ccastrotrejo ccastrotrejo requested a review from a team as a code owner October 17, 2023 20:33
@@ -70,7 +70,8 @@ async function parseDotnetInfo(dotnetInfo: string, dotnetExecutablePath: string
}

const runtimeVersions: { [runtime: string]: RuntimeInfo[] } = {};
const listRuntimes = await execChildProcess('dotnet --list-runtimes', process.cwd(), process.env);
const command = dotnetExecutablePath ? `"${dotnetExecutablePath}"` : 'dotnet';
const listRuntimes = await execChildProcess(`${command} --list-runtimes`, process.cwd(), process.env);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is most likely all correct, but give me a bit to pull this down locally and run it through an extra gamut of tests. Changes here are always a bit dangerous.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @dibarbet, I totally understand it and really appreciate it.

@dibarbet dibarbet merged commit efd9e7f into dotnet:main Oct 18, 2023
9 checks passed
@ccastrotrejo ccastrotrejo deleted the ccastrotrejo/dotnetExecPath branch October 18, 2023 16:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants