aboutsummaryrefslogtreecommitdiff
path: root/src/test/examples/FullFramework2Bundle
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-07-22 18:12:23 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-07-22 20:13:49 +1000
commit71802ec02bae5f882ca3cd894abc202d63da9440 (patch)
treed121608aefd7d7258a83ee072467ee205b26eb05 /src/test/examples/FullFramework2Bundle
parentab7e604a7d7b53f288b81a603c0dce1fc5c8e048 (diff)
downloadwix-71802ec02bae5f882ca3cd894abc202d63da9440.tar.gz
wix-71802ec02bae5f882ca3cd894abc202d63da9440.tar.bz2
wix-71802ec02bae5f882ca3cd894abc202d63da9440.zip
Fix ManagedHost tests by using Heat to harvest the BA payloads.
Also, build all example bundles in the new examples.proj instead of the tests to speed up the solution build.
Diffstat (limited to 'src/test/examples/FullFramework2Bundle')
-rw-r--r--src/test/examples/FullFramework2Bundle/Bundle.wxs15
-rw-r--r--src/test/examples/FullFramework2Bundle/FullFramework2Bundle.wixproj2
2 files changed, 17 insertions, 0 deletions
diff --git a/src/test/examples/FullFramework2Bundle/Bundle.wxs b/src/test/examples/FullFramework2Bundle/Bundle.wxs
new file mode 100644
index 00000000..c95631db
--- /dev/null
+++ b/src/test/examples/FullFramework2Bundle/Bundle.wxs
@@ -0,0 +1,15 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
3 xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
4 <Bundle Name="FullFramework2MBA" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="5CE5B5C7-4B6B-4B95-B297-731F1F956533">
5 <BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost">
6 <Payload SourceFile="Example.FullFramework2MBA\net20\win-x86\Example.FullFramework2MBA.dll" />
7 <Payload SourceFile="Example.FullFramework2MBA\net20\win-x86\mbanative.dll" />
8 <Payload SourceFile="Example.FullFramework2MBA\net20\win-x86\WixToolset.Mba.Core.dll" />
9 <Payload SourceFile="Example.FullFramework2MBA\net20\win-x86\WixToolset.Mba.Host.config" />
10 </BootstrapperApplicationRef>
11 <Chain>
12 <ExePackage SourceFile="c:\windows\system32\kernel32.dll" bal:PrereqPackage="yes" />
13 </Chain>
14 </Bundle>
15</Wix>
diff --git a/src/test/examples/FullFramework2Bundle/FullFramework2Bundle.wixproj b/src/test/examples/FullFramework2Bundle/FullFramework2Bundle.wixproj
new file mode 100644
index 00000000..ba75a9ff
--- /dev/null
+++ b/src/test/examples/FullFramework2Bundle/FullFramework2Bundle.wixproj
@@ -0,0 +1,2 @@
1<!-- 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. -->
2<Project Sdk="WixToolset.Sdk" />