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