blob: 6becaf6cd1296b73768ea23a4064776c57e142be [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)">
11 <ComponentGroupRef Id="doc" />
12
13 <Component Id="doc_shortcut" Directory="MenuDir" Guid="*">
14 <RegistryKey Root="HKMU" Key="[REGISTRYKEY]">
15 <RegistryValue Key="Help\Main Python Documentation" Type="string" Value="[#python.chm]" KeyPath="yes" />
16 </RegistryKey>
17 <Shortcut Id="python.chm"
18 Target="[#python.chm]"
19 Name="!(loc.ShortcutName)"
20 Description="!(loc.ShortcutDescription)" />
21 <RemoveFolder Id="Remove_MenuDir" On="uninstall" />
22 </Component>
23
24 </Feature>
25 </Product>
26</Wix>