aboutsummaryrefslogtreecommitdiff
path: root/src/ext/NetFx/wixlib/NetFx47.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/NetFx/wixlib/NetFx47.wxs')
-rw-r--r--src/ext/NetFx/wixlib/NetFx47.wxs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ext/NetFx/wixlib/NetFx47.wxs b/src/ext/NetFx/wixlib/NetFx47.wxs
new file mode 100644
index 00000000..84f4a221
--- /dev/null
+++ b/src/ext/NetFx/wixlib/NetFx47.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 - http://msdn.microsoft.com/en-us/library/w0x726c2(v=vs.110).aspx
11 -->
12
13 <?define NetFx47MinRelease = 460798 ?>
14
15 <Fragment>
16 <PropertyRef Id="WIXNETFX4RELEASEINSTALLED" />
17 <Property Id="WIX_IS_NETFRAMEWORK_47_OR_LATER_INSTALLED" Secure="yes" />
18 <SetProperty Id="WIX_IS_NETFRAMEWORK_47_OR_LATER_INSTALLED" Value="1" After="AppSearch" Condition="WIXNETFX4RELEASEINSTALLED &gt;= &quot;#$(var.NetFx47MinRelease)&quot;" />
19 </Fragment>
20</Wix>