Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
- <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
- <!--
- .NET Framework installation state properties
- Official documentation can be found at the following location:
- .NET Framework 4.5/4.5.1/4.5.2/4.6/4.6.1/4.6.2/4.7/4.7.1/4.8 - https://msdn.microsoft.com/en-us/library/w0x726c2(v=vs.110).aspx
- -->
- <?define NetFx48MinRelease = 528040 ?>
- <?define NetFx48WebLink = https://go.microsoft.com/fwlink/?LinkId=2085155 ?>
- <?define NetFx48RedistLink = https://go.microsoft.com/fwlink/?linkid=2088631 ?>
- <?define NetFx48EulaLink = https://referencesource.microsoft.com/license.html ?>
- <Fragment>
- <PropertyRef Id="WIXNETFX4RELEASEINSTALLED" />
- <Property Id="WIX_IS_NETFRAMEWORK_48_OR_LATER_INSTALLED" Secure="yes" />
- <SetProperty Id="WIX_IS_NETFRAMEWORK_48_OR_LATER_INSTALLED" Value="1" After="AppSearch">
- WIXNETFX4RELEASEINSTALLED >= "#$(var.NetFx48MinRelease)"
- </SetProperty>
- </Fragment>
- <Fragment>
- <util:RegistrySearchRef Id="NETFRAMEWORK45"/>
- <WixVariable Id="WixMbaPrereqPackageId" Value="NetFx48Web" />
- <WixVariable Id="WixMbaPrereqLicenseUrl" Value="$(var.NetFx48EulaLink)" Overridable="yes" />
- <WixVariable Id="NetFx48WebDetectCondition" Value="NETFRAMEWORK45 >= $(var.NetFx48MinRelease)" Overridable="yes" />
- <WixVariable Id="NetFx48WebInstallCondition" Value="" Overridable="yes" />
- <WixVariable Id="NetFx48WebPackageDirectory" Value="redist\" Overridable="yes" />
- <PackageGroup Id="NetFx48Web">
- <ExePackage
- InstallCommand="/q /norestart /ChainingPackage "[WixBundleName]" /log "[NetFx48FullLog].html""
- RepairCommand="/q /norestart /repair /ChainingPackage "[WixBundleName]" /log "[NetFx48FullLog].html""
- UninstallCommand="/uninstall /q /norestart /ChainingPackage "[WixBundleName]" /log "[NetFx48FullLog].html""
- PerMachine="yes"
- DetectCondition="!(wix.NetFx48WebDetectCondition)"
- InstallCondition="!(wix.NetFx48WebInstallCondition)"
- Id="NetFx48Web"
- Vital="yes"
- Permanent="yes"
- Protocol="netfx4"
- DownloadUrl="$(var.NetFx48WebLink)"
- LogPathVariable="NetFx48FullLog"
- Compressed="no"
- Name="!(wix.NetFx48WebPackageDirectory)ndp48-web.exe">
- <RemotePayload
- CertificatePublicKey="D17AFCE951979605250FAEBAFA7AE974899AED22"
- CertificateThumbprint="C82273A065EC470FB1EBDE846A91E6FFB29E9C12"
- Description="Microsoft .NET Framework 4.8 Setup"
- Hash="5A84A8E612E270E27D0061D58DB6B470153BE1F9"
- ProductName="Microsoft .NET Framework 4.8"
- Size="1479400"
- Version="4.8.3928.0" />
- </ExePackage>
- </PackageGroup>
- </Fragment>
- <Fragment>
- <util:RegistrySearchRef Id="NETFRAMEWORK45"/>
- <WixVariable Id="WixMbaPrereqPackageId" Value="NetFx48Redist" />
- <WixVariable Id="WixMbaPrereqLicenseUrl" Value="$(var.NetFx48EulaLink)" Overridable="yes" />
- <WixVariable Id="NetFx48RedistDetectCondition" Value="NETFRAMEWORK45 >= $(var.NetFx48MinRelease)" Overridable="yes" />
- <WixVariable Id="NetFx48RedistInstallCondition" Value="" Overridable="yes" />
- <WixVariable Id="NetFx48RedistPackageDirectory" Value="redist\" Overridable="yes" />
- <PackageGroup Id="NetFx48Redist">
- <ExePackage
- InstallCommand="/q /norestart /ChainingPackage "[WixBundleName]" /log "[NetFx48FullLog].html""
- RepairCommand="/q /norestart /repair /ChainingPackage "[WixBundleName]" /log "[NetFx48FullLog].html""
- UninstallCommand="/uninstall /q /norestart /ChainingPackage "[WixBundleName]" /log "[NetFx48FullLog].html""
- PerMachine="yes"
- DetectCondition="!(wix.NetFx48RedistDetectCondition)"
- InstallCondition="!(wix.NetFx48RedistInstallCondition)"
- Id="NetFx48Redist"
- Vital="yes"
- Permanent="yes"
- Protocol="netfx4"
- DownloadUrl="$(var.NetFx48RedistLink)"
- LogPathVariable="NetFx48FullLog"
- Compressed="no"
- Name="!(wix.NetFx48RedistPackageDirectory)ndp48-x86-x64-allos-enu.exe">
- <RemotePayload
- CertificatePublicKey="D17AFCE951979605250FAEBAFA7AE974899AED22"
- CertificateThumbprint="C82273A065EC470FB1EBDE846A91E6FFB29E9C12"
- Description="Microsoft .NET Framework 4.8 Setup"
- Hash="8DD233698D5EB4609B86C2AC917279FE39E0EF4C"
- ProductName="Microsoft .NET Framework 4.8"
- Size="117380440"
- Version="4.8.3928.0" />
- </ExePackage>
- </PackageGroup>
- </Fragment>
- </Wix>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement