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.
1 parent feec94b commit edc667aCopy full SHA for edc667a
src/cli/self_update/windows.rs
@@ -126,6 +126,8 @@ pub(crate) fn try_install_msvc() -> Result<()> {
126
cmd.arg("--wait")
127
// Display an interactive GUI focused on installing just the selected components.
128
.arg("--focusedUi")
129
+ // Add the English language pack
130
+ .args(["--addProductLang", "En-us"])
131
// Add the linker and C runtime libraries.
132
.args(["--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64"]);
133
0 commit comments