aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-05-16 16:38:14 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-05-16 21:33:56 +1000
commit4d96895a19c79ced1543d44e181527824c82c8e8 (patch)
treed5fb992122b23bc1b792b62c40e7a8e0c107fc3a /src/test/WixToolsetTest.CoreIntegration/TestData
parented8fbdf2bfedca8981b6b352568a7303e791a5b5 (diff)
downloadwix-4d96895a19c79ced1543d44e181527824c82c8e8.tar.gz
wix-4d96895a19c79ced1543d44e181527824c82c8e8.tar.bz2
wix-4d96895a19c79ced1543d44e181527824c82c8e8.zip
Process Unreal custom tables in CreateBootstrapperApplicationManifestCommand
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs
new file mode 100644
index 00000000..dacbc014
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs
@@ -0,0 +1,26 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <PackageGroup Id="BundlePackages">
5 <PackageGroupRef Id="MinimalPackageGroup" />
6 </PackageGroup>
7
8 <CustomTable Id="BundleCustomTable" Unreal="yes">
9 <Column Id="Id" Type="string" PrimaryKey="yes" />
10 <Column Id="Column2" Type="string" PrimaryKey="yes" />
11
12 <Row>
13 <Data Column="Id">one</Data>
14 <Data Column="Column2">two</Data>
15 </Row>
16 <Row>
17 <Data Column="Column2">&lt;</Data>
18 <Data Column="Id">&gt;</Data>
19 </Row>
20 <Row>
21 <Data Column="Id">1</Data>
22 <Data Column="Column2">2</Data>
23 </Row>
24 </CustomTable>
25 </Fragment>
26</Wix>