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_d)" 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
9        <Feature Id="DebugBinaries" AllowAdvertise="no" Title="!(loc.Title_d)" Description="!(loc.Description_d)">
10            <ComponentGroupRef Id="tkinter_extension_d" />
11            <ComponentGroupRef Id="tcltk_dlls_d" />
12        </Feature>
13    </Product>
14</Wix>
15