blob: e1da74f89d7e349f1ca4c77cfd82838d2d4a70b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="utf-8" ?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Fragment>
<ComponentGroup Id="ProductComponents">
<ComponentGroupRef Id="MinimalComponentGroup" />
</ComponentGroup>
<CustomTable Id="CustomTableLocalized">
<Column Id="Column1" Type="string" PrimaryKey="yes" />
<Column Id="DataColumn" Type="string" Localizable="yes" Width="255" />
<Row>
<Data Column="Column1" Value="Row1" />
<Data Column="DataColumn" Value="!(loc.Loc1)" />
</Row>
<Row>
<Data Column="Column1" Value="Row2" />
<Data Column="DataColumn" Value="!(loc.Loc2)" />
</Row>
</CustomTable>
</Fragment>
</Wix>
|