We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 02496b0 + edc667a commit dc93d52Copy full SHA for dc93d52
src/cli/self_update/windows.rs
@@ -139,6 +139,8 @@ pub(crate) fn try_install_msvc(opts: &InstallOpts<'_>) -> Result<ContinueInstall
139
cmd.arg("--wait")
140
// Display an interactive GUI focused on installing just the selected components.
141
.arg("--focusedUi")
142
+ // Add the English language pack
143
+ .args(["--addProductLang", "En-us"])
144
// Add the linker and C runtime libraries.
145
.args(["--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64"]);
146
0 commit comments