blob: 603c3aee5fea45375b46b67de0b07a23dd340ab7 (
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" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
<Fragment>
<BootstrapperApplication Id="BrokenMba">
<Payload Name="WixToolset.Mba.Host.config" SourceFile="bad.config" />
<Payload SourceFile="!(bindpath.net2x86)\TestBA.dll" />
<Payload SourceFile="!(bindpath.net2x86)\mbanative.dll" />
<Payload SourceFile="!(bindpath.net2x86)\WixToolset.Mba.Core.dll" />
<bal:WixManagedBootstrapperApplicationHost />
</BootstrapperApplication>
</Fragment>
<Fragment>
<PackageGroup Id="BundlePackages">
<MsiPackage Id="PackageB" SourceFile="$(var.PackageB.TargetPath)" bal:PrereqPackage="yes" Permanent="yes" />
<MsiPackage Id="PackageF" SourceFile="$(var.PackageF.TargetPath)" />
</PackageGroup>
</Fragment>
</Wix>
|