mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
Prevent installation on Windows 8 and earlier. Download UCRT on demand when required (non-updated Windows 8.1 only) Add reference to py launcher to post-install message
23 lines
No EOL
1.1 KiB
XML
23 lines
No EOL
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Fragment>
|
|
<PackageGroup Id="crt">
|
|
<MsiPackage Id="ucrt_AllUsers"
|
|
SourceFile="ucrt.msi"
|
|
Compressed="no"
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
ForcePerMachine="yes"
|
|
InstallCondition="InstallAllUsers and not CRTInstalled and (Include_core or Include_exe or Include_pip) and not LauncherOnly">
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
|
</MsiPackage>
|
|
<MsiPackage Id="ucrt_JustForMe"
|
|
SourceFile="ucrt.msi"
|
|
Compressed="no"
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
ForcePerMachine="no"
|
|
InstallCondition="not InstallAllUsers and not CRTInstalled and (Include_core or Include_exe or Include_pip) and not LauncherOnly">
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
|
</MsiPackage>
|
|
</PackageGroup>
|
|
</Fragment>
|
|
</Wix> |