https://github.com/python/cpython
Raw File
Tip revision: 49965601d6afedafe47cc85556d99b7a24981051 authored by Pablo Galindo on 24 August 2023, 12:45:33 UTC
Python 3.10.13
Tip revision: 4996560
core_d.wxs
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title_d)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
        <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" />
        <MediaTemplate EmbedCab="yes" CompressionLevel="high" />
        
        <PropertyRef Id="UpgradeTable" />
        
        <Feature Id="DebugBinaries" AllowAdvertise="no" Title="!(loc.Title_d)" Description="!(loc.Description_d)">
            <ComponentGroupRef Id="core_dll_d" />
            <ComponentRef Id="OptionalFeature" />
        </Feature>
    </Product>
</Wix>
back to top