diff options
author | Steve Dower <steve.dower@microsoft.com> | 2018-01-09 08:14:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-09 08:14:46 (GMT) |
commit | d135f20ae8887acc7716561bc8f4c7eb6d58d24c (patch) | |
tree | 8c988503dc2f0f2dc757442a073c06b7a9a16078 /Tools/msi/exe | |
parent | ca0c5f26563349ed761af13590acef80e1064eab (diff) | |
download | cpython-d135f20ae8887acc7716561bc8f4c7eb6d58d24c.zip cpython-d135f20ae8887acc7716561bc8f4c7eb6d58d24c.tar.gz cpython-d135f20ae8887acc7716561bc8f4c7eb6d58d24c.tar.bz2 |
bpo-32507: Change Windows install to include app-local UCRT (#5119)
Diffstat (limited to 'Tools/msi/exe')
-rw-r--r-- | Tools/msi/exe/exe.wxs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/msi/exe/exe.wxs b/Tools/msi/exe/exe.wxs index 03d43c6..98d31b3 100644 --- a/Tools/msi/exe/exe.wxs +++ b/Tools/msi/exe/exe.wxs @@ -3,10 +3,10 @@ <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)"> <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" /> <MediaTemplate EmbedCab="yes" CompressionLevel="high" /> - + <PropertyRef Id="UpgradeTable" /> <PropertyRef Id="REGISTRYKEY" /> - + <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)"> <ComponentGroupRef Id="exe_python" Primary="yes" /> <ComponentGroupRef Id="exe_reg" Primary="yes" /> @@ -14,7 +14,7 @@ <ComponentGroupRef Id="exe_icons" /> <ComponentRef Id="OptionalFeature" /> </Feature> - + <Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)"> <ComponentGroupRef Id="exe_python" /> <Component Id="exe_shortcut" Directory="MenuDir" Guid="*"> |