summaryrefslogtreecommitdiff
path: root/src/ext/NetFx/wixlib/NetFx471.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/NetFx/wixlib/NetFx471.wxs')
-rw-r--r--src/ext/NetFx/wixlib/NetFx471.wxs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ext/NetFx/wixlib/NetFx471.wxs b/src/ext/NetFx/wixlib/NetFx471.wxs
new file mode 100644
index 00000000..b5f825ab
--- /dev/null
+++ b/src/ext/NetFx/wixlib/NetFx471.wxs
@@ -0,0 +1,20 @@
1<!-- 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. -->
2
3<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
4
5 <!--
6 .NET Framework installation state properties
7
8 Official documentation can be found at the following location:
9
10 .NET Framework 4.5/4.5.1/4.5.2/4.6/4.6.1/4.6.2/4.7/4.7.1 - http://msdn.microsoft.com/en-us/library/w0x726c2(v=vs.110).aspx
11 -->
12
13 <?define NetFx471MinRelease = 461308 ?>
14
15 <Fragment>
16 <PropertyRef Id="WIXNETFX4RELEASEINSTALLED" />
17 <Property Id="WIX_IS_NETFRAMEWORK_471_OR_LATER_INSTALLED" Secure="yes" />
18 <SetProperty Id="WIX_IS_NETFRAMEWORK_471_OR_LATER_INSTALLED" Value="1" After="AppSearch" Condition="WIXNETFX4RELEASEINSTALLED &gt;= &quot;#$(var.NetFx471MinRelease)&quot;" />
19 </Fragment>
20</Wix>