aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
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>