aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/DependencyExtension.wxs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wixlib/DependencyExtension.wxs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/wixlib/DependencyExtension.wxs b/src/wixlib/DependencyExtension.wxs
index 21f863d2..0516b18c 100644
--- a/src/wixlib/DependencyExtension.wxs
+++ b/src/wixlib/DependencyExtension.wxs
@@ -1,5 +1,4 @@
1<?xml version="1.0"?> 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<!-- 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. -->
3 2
4 3
5<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 4<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
@@ -7,16 +6,16 @@
7 6
8 <Fragment> 7 <Fragment>
9 <UI Id="WixDependencyErrors"> 8 <UI Id="WixDependencyErrors">
10 <Error Id="$(var.msierrDependencyMissingDependencies)">!(loc.msierrDependencyMissingDependencies)</Error> 9 <Error Id="$(var.msierrDependencyMissingDependencies)" Message="!(loc.msierrDependencyMissingDependencies)" />
11 <Error Id="$(var.msierrDependencyHasDependents)">!(loc.msierrDependencyHasDependents)</Error> 10 <Error Id="$(var.msierrDependencyHasDependents)" Message="!(loc.msierrDependencyHasDependents)" />
12 </UI> 11 </UI>
13 </Fragment> 12 </Fragment>
14 13
15 <Fragment> 14 <Fragment>
16 <Property Id="DISABLEDEPENDENCYCHECK" Secure="yes" SuppressModularization="yes"/> 15 <Property Id="DISABLEDEPENDENCYCHECK" Secure="yes" SuppressModularization="yes" />
17 </Fragment> 16 </Fragment>
18 17
19 <Fragment> 18 <Fragment>
20 <Property Id="IGNOREDEPENDENCIES" Secure="yes" SuppressModularization="yes"/> 19 <Property Id="IGNOREDEPENDENCIES" Secure="yes" SuppressModularization="yes" />
21 </Fragment> 20 </Fragment>
22</Wix> 21</Wix>