blob: 22b0213932458aa37beee820b8f44ceb422587df [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" />
12 </Feature>
13 <Feature Id="Shortcuts" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
Steve Dowerbb240872015-02-05 22:08:48 -080014 <ComponentGroupRef Id="doc" />
15
Steve Dowerdb80aec2015-02-11 17:49:01 -080016 <?ifdef DocFilename ?>
Steve Dowerbb240872015-02-05 22:08:48 -080017 <Component Id="doc_shortcut" Directory="MenuDir" Guid="*">
Steve Dower1d4880d2015-05-03 14:54:32 -070018 <RegistryValue Root="HKMU" Key="[REGISTRYKEY]\DocShortcuts" Type="integer" Value="1" KeyPath="yes" />
Steve Dowerbb240872015-02-05 22:08:48 -080019 <Shortcut Id="python.chm"
20 Target="[#python.chm]"
21 Name="!(loc.ShortcutName)"
22 Description="!(loc.ShortcutDescription)" />
23 <RemoveFolder Id="Remove_MenuDir" On="uninstall" />
24 </Component>
Steve Dowerdb80aec2015-02-11 17:49:01 -080025 <?endif ?>
Steve Dowerbb240872015-02-05 22:08:48 -080026
27 </Feature>
28 </Product>
29</Wix>