blob: 8dd0e21ae39c9d38322f8dc333150e6b2d101dad [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
10 <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
Steve Dower1d4880d2015-05-03 14:54:32 -070011 <ComponentGroupRef Id="doc" Primary="yes" />
Steve Dower49437492015-07-08 20:18:44 -070012 <ComponentRef Id="OptionalFeature" />
Steve Dower1d4880d2015-05-03 14:54:32 -070013 </Feature>
14 <Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
Steve Dowerbb240872015-02-05 22:08:48 -080015 <ComponentGroupRef Id="doc" />
16
Steve Dowerdb80aec2015-02-11 17:49:01 -080017 <?ifdef DocFilename ?>
Steve Dowerbb240872015-02-05 22:08:48 -080018 <Component Id="doc_shortcut" Directory="MenuDir" Guid="*">
Steve Dower49437492015-07-08 20:18:44 -070019 <RegistryKey Root="HKMU" Key="[OPTIONALFEATURESREGISTRYKEY]">
20 <RegistryValue Name="$(var.OptionalFeatureName)_shortcut" Type="string" Value="$(var.Version)" KeyPath="yes" />
21 </RegistryKey>
Steve Dowerbb240872015-02-05 22:08:48 -080022 <Shortcut Id="python.chm"
23 Target="[#python.chm]"
24 Name="!(loc.ShortcutName)"
Steve Dower04a43162015-10-31 12:41:46 -070025 Description="!(loc.ShortcutDescription)"
26 WorkingDirectory="InstallDirectory" />
Steve Dowerbb240872015-02-05 22:08:48 -080027 <RemoveFolder Id="Remove_MenuDir" On="uninstall" />
28 </Component>
Steve Dowerdb80aec2015-02-11 17:49:01 -080029 <?endif ?>
Steve Dowerbb240872015-02-05 22:08:48 -080030
31 </Feature>
32 </Product>
33</Wix>