blob: dcbf646da0f17d528946de9ac4946f203e52a790 [file] [log] [blame]
Steve Dowerbb240872015-02-05 22:08:48 -08001<?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 Dowerbb240872015-02-05 22:08:48 -080010 <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
Steve Dower1d4880d2015-05-03 14:54:32 -070011 <ComponentGroupRef Id="exe_python" Primary="yes" />
Steve Dowerbb240872015-02-05 22:08:48 -080012 <ComponentGroupRef Id="exe_txt" />
13 <ComponentGroupRef Id="exe_icons" />
Steve Dower49437492015-07-08 20:18:44 -070014 <ComponentRef Id="OptionalFeature" />
Steve Dower1d4880d2015-05-03 14:54:32 -070015 </Feature>
Steve Dowerbb240872015-02-05 22:08:48 -080016
Steve Dower1d4880d2015-05-03 14:54:32 -070017 <Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
18 <ComponentGroupRef Id="exe_python" />
Steve Dowerbb240872015-02-05 22:08:48 -080019 <Component Id="exe_shortcut" Directory="MenuDir" Guid="*">
20 <Shortcut Id="python.exe"
21 Target="[#python.exe]"
22 Name="!(loc.ShortcutName)"
23 Description="!(loc.ShortcutDescription)" />
24 <RemoveFolder Id="Remove_MenuDir" Directory="MenuDir" On="uninstall" />
25 <RegistryKey Root="HKMU" Key="[REGISTRYKEY]">
Steve Dower1d4880d2015-05-03 14:54:32 -070026 <RegistryValue Key="InstallPath\InstallGroup" Type="string" Value="!(loc.ProductName)" KeyPath="yes" />
Steve Dower49437492015-07-08 20:18:44 -070027 <RegistryValue Key="InstalledFeatures" Name="Shortcuts" Type="string" Value="$(var.Version)" />
Steve Dowerbb240872015-02-05 22:08:48 -080028 </RegistryKey>
29 </Component>
30 </Feature>
Steve Dowerbb240872015-02-05 22:08:48 -080031 </Product>
32</Wix>