aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Dependency/wixlib/DependencyExtension.wxs
blob: 3849f635f84167706c8f6bfa45bcacd38b662506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- 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">
    <?include ..\..\caerr.wxi ?>

    <Fragment>
        <UI Id="WixDependencyErrors">
            <Error Id="$(var.msierrDependencyMissingDependencies)" Message="!(loc.msierrDependencyMissingDependencies)" />
            <Error Id="$(var.msierrDependencyHasDependents)" Message="!(loc.msierrDependencyHasDependents)" />
        </UI>
    </Fragment>

    <Fragment>
        <Property Id="DISABLEDEPENDENCYCHECK" Secure="yes" SuppressModularization="yes" />
    </Fragment>

    <Fragment>
        <Property Id="IGNOREDEPENDENCIES" Secure="yes" SuppressModularization="yes" />
    </Fragment>
</Wix>