blob: 08a9c470b80654d42179659fb03021598dbe4a6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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="CustomTableWithFile">
<Column Id="Column1" Type="string" PrimaryKey="yes" />
<Column Id="Source" Type="binary" Width="0" />
<Row>
<Data Column="Column1" Value="Row1" />
<Data Column="Source" Value="file1.txt" />
</Row>
<Row>
<Data Column="Source" Value="SourceDir\file2.txt" />
<Data Column="Column1" Value="Row2" />
</Row>
</CustomTable>
</Fragment>
</Wix>
|