blob: c16da2e552570bf378bc47008a2eecabdf6b2f87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!-- 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">
<Fragment>
<BootstrapperApplicationRef Id='ManagedBootstrapperApplicationHost'>
<Payload Name='WixToolset.Mba.Host.config' SourceFile='!(bindpath.x86)\TestBA.BootstrapperCore.config' />
<Payload SourceFile='!(bindpath.x86)\TestBA.dll' />
<Payload SourceFile="!(bindpath.x86)\mbanative.dll" />
<Payload SourceFile="!(bindpath.x86)\WixToolset.Mba.Core.dll" />
</BootstrapperApplicationRef>
<PackageGroup Id="TestBA">
<PackageGroupRef Id="NetFx48WebAsPrereq" />
</PackageGroup>
</Fragment>
</Wix>
|