blob: 3ea7840f49c8c74f326ac2133ab0d644c1d06532 (
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. -->
<Include xmlns="http://wixtoolset.org/schemas/v4/wxs">
<?include ..\..\caDecor.wxi ?>
<Fragment>
<BootstrapperApplication Id="WixManagedBootstrapperApplicationHost$(var.Suffix)">
<BootstrapperApplicationDll Id="WixManagedBootstrapperApplicationHost" SourceFile="!(bindpath.mbahost.$(var.platform))\mbahost.dll" />
<Payload SourceFile="!(bindpath.wixstdba.$(var.platform))\wixstdba.dll" Name="mbapreq.dll" />
<PayloadGroupRef Id="WixManagedBootstrapperApplicationHostManagedPayloads" />
</BootstrapperApplication>
</Fragment>
<Fragment>
<BootstrapperApplication Id="WixManagedBootstrapperApplicationHost.Standard$(var.Suffix)">
<PayloadGroupRef Id="MbaPreqStandardPayloads" />
</BootstrapperApplication>
<BootstrapperApplicationRef Id="WixManagedBootstrapperApplicationHost$(var.Suffix)" />
</Fragment>
</Include>
|