blob: 06d7f1fce2a18304e05a5a569b9a8a9fafd0074f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!-- 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.$(var.platform))\mbahost.dll" />
<Payload SourceFile="!(bindpath.$(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>
|