| 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" 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" Modularize="column" /> |
| 11 | <Row> |
| 12 | <Data Column="Column1" Value="Row1" /> |
| 13 | <Data Column="Component_" Value="test.txt" /> |
| 14 | </Row> |
| 15 | <Row> |
| 16 | <Data Column="Column1" Value="Row2" /> |
| 17 | <Data Column="Component_" Value="test.txt" /> |
| 18 | </Row> |
| 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" Modularize="column" /> |
| 24 | <Row> |
| 25 | <Data Column="ColumnA" Value="RowA" /> |
| 26 | <Data Column="Component_" Value="test.txt" /> |
| 27 | </Row> |
| 28 | <Row> |
| 29 | <Data Column="ColumnA" Value="RowB" /> |
| 30 | <Data Column="Component_" Value="test.txt" /> |
| 31 | </Row> |
| 32 | </CustomTable> |
| 33 | </Fragment> |
| 34 | </Wix> |