aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTableWithFile.wxs
blob: ad5ed2339299312e6260aa15da5130a7bdcace5f (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">Row1</Data>
                <Data Column="Source">file1.txt</Data>
            </Row>
            <Row>
                <Data Column="Source">SourceDir\file2.txt</Data>
                <Data Column="Column1">Row2</Data>
            </Row>
        </CustomTable>

    </Fragment>
</Wix>