blob: 88363555b5f6ec3472a11e8ea6fa5113daa5b192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!-- 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://wixtoolset.org/schemas/v4/wxs">
<!--
.NET Framework installation state properties
Official documentation can be found at the following location:
.NET Framework 4.5/4.5.1 - http://msdn.microsoft.com/en-us/library/5a4x27ek.aspx, http://msdn.microsoft.com/en-us/library/ee942965(v=VS.110).aspx
-->
<?define NetFx451MinRelease = 378675 ?>
<?define NetFx451WebLink = http://go.microsoft.com/fwlink/?LinkId=322115 ?>
<?define NetFx451RedistLink = http://go.microsoft.com/fwlink/?LinkId=322116 ?>
<?define NetFx451EulaLink = http://wixtoolset.org/licenses/netfx451 ?>
<?define NetFx451WebId = NetFx451Web ?>
<?define NetFx451RedistId = NetFx451Redist ?>
<Fragment>
<PropertyRef Id="WIXNETFX4RELEASEINSTALLED" />
<Property Id="WIX_IS_NETFRAMEWORK_451_OR_LATER_INSTALLED" Secure="yes" />
<SetProperty Id="WIX_IS_NETFRAMEWORK_451_OR_LATER_INSTALLED" Value="1" After="AppSearch" Condition="WIXNETFX4RELEASEINSTALLED >= "#$(var.NetFx451MinRelease)"" />
</Fragment>
</Wix>
|