diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-23 00:56:36 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-23 02:10:31 -0700 |
| commit | ed0fb39537c0cfb13922537a26f9d895180d42d8 (patch) | |
| tree | 7bc1015a1a548c6b1d38b7f9608afe34ffbf6ea0 /src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs | |
| parent | 9319732abb1eee646b3540b8511b328833a1acfb (diff) | |
| download | wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.tar.gz wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.tar.bz2 wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.zip | |
Remove obsolete inner text handling
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs | 16 |
1 files changed, 8 insertions, 8 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> |
