2019-08-06 11:56:22 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
|
|
|
<Fragment>
|
|
|
|
<util:RegistrySearchRef Id="NETFRAMEWORK45" />
|
2023-06-22 16:15:23 +02:00
|
|
|
<Variable Name="DotNetMinimumVersion" Type="numeric" Value="528040" />
|
2019-08-06 11:56:22 +02:00
|
|
|
<PackageGroup Id="DotNetFramework">
|
2023-06-22 16:15:23 +02:00
|
|
|
<ExePackage Id="NetFx48Web"
|
|
|
|
Compressed="yes"
|
2019-08-06 11:56:22 +02:00
|
|
|
DetectCondition="NETFRAMEWORK45 >= DotNetMinimumVersion"
|
|
|
|
InstallCommand="/q /norestart /ChainingPackage "[WixBundleName]""
|
2023-06-22 16:15:23 +02:00
|
|
|
Name="ndp48-web.exe"
|
|
|
|
PerMachine="yes"
|
|
|
|
Permanent="yes"
|
|
|
|
Protocol="netfx4"
|
2019-08-06 11:56:22 +02:00
|
|
|
RepairCommand="/q /norestart /repair /ChainingPackage "[WixBundleName]""
|
2023-06-22 16:15:23 +02:00
|
|
|
SourceFile="C:\Temp\ndp48-web.exe"
|
|
|
|
UninstallCommand="/uninstall /q /norestart /ChainingPackage "[WixBundleName]""
|
|
|
|
Vital="yes">
|
2019-08-06 11:56:22 +02:00
|
|
|
</ExePackage>
|
|
|
|
</PackageGroup>
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|