aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-23 00:56:36 -0700
committerRob Mensching <rob@firegiant.com>2020-06-23 02:10:31 -0700
commited0fb39537c0cfb13922537a26f9d895180d42d8 (patch)
tree7bc1015a1a548c6b1d38b7f9608afe34ffbf6ea0 /src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable
parent9319732abb1eee646b3540b8511b328833a1acfb (diff)
downloadwix-ed0fb39537c0cfb13922537a26f9d895180d42d8.tar.gz
wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.tar.bz2
wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.zip
Remove obsolete inner text handling
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs16
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTableWithFile.wxs8
2 files changed, 12 insertions, 12 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs
index 51aee5f2..7f4a43e5 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs
@@ -9,12 +9,12 @@
9 <Column Id="Column1" Type="string" PrimaryKey="yes" Category="text" Modularize="column" Description="The first custom column." /> 9 <Column Id="Column1" Type="string" PrimaryKey="yes" Category="text" Modularize="column" Description="The first custom column." />
10 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" /> 10 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" />
11 <Row> 11 <Row>
12 <Data Column="Column1">Row1</Data> 12 <Data Column="Column1" Value="Row1" />
13 <Data Column="Component_">test.txt</Data> 13 <Data Column="Component_" Value="test.txt" />
14 </Row> 14 </Row>
15 <Row> 15 <Row>
16 <Data Column="Column1">Row2</Data> 16 <Data Column="Column1" Value="Row2" />
17 <Data Column="Component_">test.txt</Data> 17 <Data Column="Component_" Value="test.txt" />
18 </Row> 18 </Row>
19 </CustomTable> 19 </CustomTable>
20 20
@@ -22,12 +22,12 @@
22 <Column Id="ColumnA" Type="string" PrimaryKey="yes" /> 22 <Column Id="ColumnA" Type="string" PrimaryKey="yes" />
23 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" /> 23 <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" />
24 <Row> 24 <Row>
25 <Data Column="ColumnA">RowA</Data> 25 <Data Column="ColumnA" Value="RowA" />
26 <Data Column="Component_">test.txt</Data> 26 <Data Column="Component_" Value="test.txt" />
27 </Row> 27 </Row>
28 <Row> 28 <Row>
29 <Data Column="ColumnA">RowB</Data> 29 <Data Column="ColumnA" Value="RowB" />
30 <Data Column="Component_">test.txt</Data> 30 <Data Column="Component_" Value="test.txt" />
31 </Row> 31 </Row>
32 </CustomTable> 32 </CustomTable>
33 </Fragment> 33 </Fragment>
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTableWithFile.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTableWithFile.wxs
index ad5ed233..08a9c470 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTableWithFile.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTableWithFile.wxs
@@ -9,12 +9,12 @@
9 <Column Id="Column1" Type="string" PrimaryKey="yes" /> 9 <Column Id="Column1" Type="string" PrimaryKey="yes" />
10 <Column Id="Source" Type="binary" Width="0" /> 10 <Column Id="Source" Type="binary" Width="0" />
11 <Row> 11 <Row>
12 <Data Column="Column1">Row1</Data> 12 <Data Column="Column1" Value="Row1" />
13 <Data Column="Source">file1.txt</Data> 13 <Data Column="Source" Value="file1.txt" />
14 </Row> 14 </Row>
15 <Row> 15 <Row>
16 <Data Column="Source">SourceDir\file2.txt</Data> 16 <Data Column="Source" Value="SourceDir\file2.txt" />
17 <Data Column="Column1">Row2</Data> 17 <Data Column="Column1" Value="Row2" />
18 </Row> 18 </Row>
19 </CustomTable> 19 </CustomTable>
20 20