aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Bal/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-23 12:11:30 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-23 12:43:38 +1000
commit05edba00dc08b74a6d9b32b4e56f4da6ef90c638 (patch)
tree734cf99cfc7e8f105365981169d7882a4400070d /src/test/WixToolsetTest.Bal/TestData
parentd686f0d92fc14940441dbf53c28547a975572f92 (diff)
downloadwix-05edba00dc08b74a6d9b32b4e56f4da6ef90c638.tar.gz
wix-05edba00dc08b74a6d9b32b4e56f4da6ef90c638.tar.bz2
wix-05edba00dc08b74a6d9b32b4e56f4da6ef90c638.zip
Update BalBurnBackendExtension to use BundleFinalize.
Diffstat (limited to 'src/test/WixToolsetTest.Bal/TestData')
-rw-r--r--src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs10
-rw-r--r--src/test/WixToolsetTest.Bal/TestData/WixStdBa/Bundle.wxs5
2 files changed, 11 insertions, 4 deletions
diff --git a/src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs b/src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs
new file mode 100644
index 00000000..b3538c68
--- /dev/null
+++ b/src/test/WixToolsetTest.Bal/TestData/MBA/Bundle.wxs
@@ -0,0 +1,10 @@
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="WixStdBa" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="75D5D534-E177-4689-AAE9-CAC1C39002C2">
5 <BootstrapperApplicationRef Id="ManagedBootstrapperApplicationHost" />
6 <Chain>
7 <PackageGroupRef Id="NetFx462Redist" />
8 </Chain>
9 </Bundle>
10</Wix>
diff --git a/src/test/WixToolsetTest.Bal/TestData/WixStdBa/Bundle.wxs b/src/test/WixToolsetTest.Bal/TestData/WixStdBa/Bundle.wxs
index 3a37e8ec..45bb25d1 100644
--- a/src/test/WixToolsetTest.Bal/TestData/WixStdBa/Bundle.wxs
+++ b/src/test/WixToolsetTest.Bal/TestData/WixStdBa/Bundle.wxs
@@ -6,10 +6,7 @@
6 <bal:WixStandardBootstrapperApplication LicenseUrl="http://wixtoolset.org/about/license/" /> 6 <bal:WixStandardBootstrapperApplication LicenseUrl="http://wixtoolset.org/about/license/" />
7 </BootstrapperApplicationRef> 7 </BootstrapperApplicationRef>
8 <Chain> 8 <Chain>
9 <!-- TODO: Replace ExePackage below with this --> 9 <ExePackage SourceFile="runtimes\win-x86\native\wixnative.x86.exe" />
10 <!-- <PackageGroupRef Id="NetFx462RedistAsPrereq" /> -->
11 <!-- TODO: Remove explicit PerMachine -->
12 <ExePackage SourceFile="runtimes\win-x86\native\wixnative.x86.exe" PerMachine="no" />
13 </Chain> 10 </Chain>
14 </Bundle> 11 </Bundle>
15</Wix> 12</Wix>