• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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)" 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="DetectTargetDir" />
8        <PropertyRef Id="UpgradeTable" />
9        <PropertyRef Id="REGISTRYKEY" />
10
11        <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
12            <ComponentGroupRef Id="lib_py" />
13            <ComponentGroupRef Id="lib_files" />
14            <ComponentGroupRef Id="lib_extensions" />
15            <ComponentGroupRef Id="lib_cat" />
16            <ComponentRef Id="OptionalFeature" />
17        </Feature>
18    </Product>
19</Wix>
20