Steve Dower | bb24087 | 2015-02-05 22:08:48 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
| 3 | <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)"> |
| 4 | <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" /> |
| 5 | <MediaTemplate EmbedCab="yes" CompressionLevel="high" /> |
| 6 | |
| 7 | <PropertyRef Id="UpgradeTable" /> |
| 8 | <PropertyRef Id="REGISTRYKEY" /> |
| 9 | |
Steve Dower | bb24087 | 2015-02-05 22:08:48 -0800 | [diff] [blame] | 10 | <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)"> |
| 11 | <ComponentGroupRef Id="exe_python" /> |
| 12 | <ComponentGroupRef Id="exe_txt" /> |
| 13 | <ComponentGroupRef Id="exe_icons" /> |
| 14 | |
| 15 | <Component Id="exe_shortcut" Directory="MenuDir" Guid="*"> |
| 16 | <Shortcut Id="python.exe" |
| 17 | Target="[#python.exe]" |
| 18 | Name="!(loc.ShortcutName)" |
| 19 | Description="!(loc.ShortcutDescription)" /> |
| 20 | <RemoveFolder Id="Remove_MenuDir" Directory="MenuDir" On="uninstall" /> |
| 21 | <RegistryKey Root="HKMU" Key="[REGISTRYKEY]"> |
| 22 | <RegistryValue Key="InstallPath" Type="string" Value="[InstallDirectory]" KeyPath="yes" /> |
| 23 | <RegistryValue Key="InstallPath\InstallGroup" Type="string" Value="Python $(var.ShortVersion)" /> |
| 24 | </RegistryKey> |
| 25 | </Component> |
| 26 | </Feature> |
Steve Dower | bb24087 | 2015-02-05 22:08:48 -0800 | [diff] [blame] | 27 | </Product> |
| 28 | </Wix> |