aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Bal/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-01-31 21:43:14 +1100
committerSean Hall <r.sean.hall@gmail.com>2020-01-31 21:49:35 +1100
commit16f6a68d0bb1a0d5892a8cef10b835acc4e2a317 (patch)
treebbd973f86085ef1175d8bf03cadc2d855d3c06a1 /src/test/WixToolsetTest.Bal/TestData
parent08ab1a16349500606b76ba0c5d003c1c993710fb (diff)
downloadwix-16f6a68d0bb1a0d5892a8cef10b835acc4e2a317.tar.gz
wix-16f6a68d0bb1a0d5892a8cef10b835acc4e2a317.tar.bz2
wix-16f6a68d0bb1a0d5892a8cef10b835acc4e2a317.zip
Add failing test for compiling a WixStdBa bundle.
Diffstat (limited to 'src/test/WixToolsetTest.Bal/TestData')
-rw-r--r--src/test/WixToolsetTest.Bal/TestData/WixStdBa/Bundle.wxs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.Bal/TestData/WixStdBa/Bundle.wxs b/src/test/WixToolsetTest.Bal/TestData/WixStdBa/Bundle.wxs
new file mode 100644
index 00000000..3a37e8ec
--- /dev/null
+++ b/src/test/WixToolsetTest.Bal/TestData/WixStdBa/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="WixStdBa" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="75D5D534-E177-4689-AAE9-CAC1C39002C2">
5 <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
6 <bal:WixStandardBootstrapperApplication LicenseUrl="http://wixtoolset.org/about/license/" />
7 </BootstrapperApplicationRef>
8 <Chain>
9 <!-- TODO: Replace ExePackage below with this -->
10 <!-- <PackageGroupRef Id="NetFx462RedistAsPrereq" /> -->
11 <!-- TODO: Remove explicit PerMachine -->
12 <ExePackage SourceFile="runtimes\win-x86\native\wixnative.x86.exe" PerMachine="no" />
13 </Chain>
14 </Bundle>
15</Wix>