diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-01-23 14:46:40 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-01-23 14:50:33 -0500 |
| commit | 54c6cf7e151b4e816cedc393e9c520eb818524de (patch) | |
| tree | a932e2b6ea4473705884dc34059602038f0935ef /src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs | |
| parent | c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647 (diff) | |
| download | wix-54c6cf7e151b4e816cedc393e9c520eb818524de.tar.gz wix-54c6cf7e151b4e816cedc393e9c520eb818524de.tar.bz2 wix-54c6cf7e151b4e816cedc393e9c520eb818524de.zip | |
Fix CustomTable/@Unreal="yes" binding.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs index 649b29b6..8eb4fbf9 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs | |||
| @@ -17,5 +17,18 @@ | |||
| 17 | <Data Column="Component_">test.txt</Data> | 17 | <Data Column="Component_">test.txt</Data> |
| 18 | </Row> | 18 | </Row> |
| 19 | </CustomTable> | 19 | </CustomTable> |
| 20 | |||
| 21 | <CustomTable Id="CustomTable2" Unreal="yes"> | ||
| 22 | <Column Id="ColumnA" Type="string" PrimaryKey="yes" /> | ||
| 23 | <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" /> | ||
| 24 | <Row> | ||
| 25 | <Data Column="ColumnA">RowA</Data> | ||
| 26 | <Data Column="Component_">test.txt</Data> | ||
| 27 | </Row> | ||
| 28 | <Row> | ||
| 29 | <Data Column="ColumnA">RowB</Data> | ||
| 30 | <Data Column="Component_">test.txt</Data> | ||
| 31 | </Row> | ||
| 32 | </CustomTable> | ||
| 20 | </Fragment> | 33 | </Fragment> |
| 21 | </Wix> | 34 | </Wix> |
