Steve Dower | bb24087 | 2015-02-05 22:08:48 -0800 | [diff] [blame^] | 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="UpgradeTable" /> |
| 8 | <PropertyRef Id="REGISTRYKEY" /> |
| 9 | |
| 10 | <?ifdef IncludeDefaultFeature ?> |
| 11 | <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)"> |
| 12 | <ComponentGroupRef Id="test_py" /> |
| 13 | <ComponentGroupRef Id="test_extensions" /> |
| 14 | </Feature> |
| 15 | <?endif ?> |
| 16 | <?ifdef IncludeSymbols ?> |
| 17 | <Feature Id="Symbols" AllowAdvertise="no" Title="!(loc.TitlePdb)" Description="!(loc.DescriptionPdb)"> |
| 18 | <ComponentGroupRef Id="test_extensions_symbols" /> |
| 19 | </Feature> |
| 20 | <?endif ?> |
| 21 | <?ifdef IncludeDebugBinaries ?> |
| 22 | <Feature Id="DebugBinaries" AllowAdvertise="no" Title="!(loc.Title_d)" Description="!(loc.Description_d)"> |
| 23 | <ComponentGroupRef Id="test_extensions_d" /> |
| 24 | </Feature> |
| 25 | <?endif ?> |
| 26 | </Product> |
| 27 | </Wix> |