aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-10-11 14:59:56 +1000
committerSean Hall <r.sean.hall@gmail.com>2019-10-11 15:39:29 +1000
commit664ce5ac707905b631f9a752cab0d2dc1b7d6edc (patch)
tree466b380fdfa640b5b0d509a898ec1500a34e95b7 /src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable
parent17c717d302fd8c6ecc89e5611377bafcdd733f43 (diff)
downloadwix-664ce5ac707905b631f9a752cab0d2dc1b7d6edc.tar.gz
wix-664ce5ac707905b631f9a752cab0d2dc1b7d6edc.tar.bz2
wix-664ce5ac707905b631f9a752cab0d2dc1b7d6edc.zip
Add failing test for CustomTable.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs
new file mode 100644
index 00000000..649b29b6
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs
@@ -0,0 +1,21 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <ComponentGroup Id="ProductComponents">
5 <ComponentGroupRef Id="MinimalComponentGroup" />
6 </ComponentGroup>
7
8 <CustomTable Id="CustomTable1">
9 <Column Id="Column1" Type="string" PrimaryKey="yes" />
10 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" />
11 <Row>
12 <Data Column="Column1">Row1</Data>
13 <Data Column="Component_">test.txt</Data>
14 </Row>
15 <Row>
16 <Data Column="Column1">Row2</Data>
17 <Data Column="Component_">test.txt</Data>
18 </Row>
19 </CustomTable>
20 </Fragment>
21</Wix>