aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/BundleCustomTable/BundleCustomTable.wxs
blob: db755171fe917b3e41caa9ee1cab31498d602025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
    <Fragment>
        <PackageGroup Id="BundlePackages">
            <PackageGroupRef Id="MinimalPackageGroup" />
        </PackageGroup>

        <BundleCustomData Id="BundleCustomTableBA">
            <BundleAttributeDefinition Id="Id" />
            <BundleAttributeDefinition Id="Column2" />

            <BundleElement>
                <BundleAttribute Id="Id" Value="one" />
                <BundleAttribute Id="Column2" Value="two" />
            </BundleElement>
            <BundleElement>
                <BundleAttribute Id="Column2" Value="&lt;" />
                <BundleAttribute Id="Id" Value="&gt;" />
            </BundleElement>
        </BundleCustomData>

        <BundleCustomData Id="BundleCustomTableBE" ExtensionId="CustomTableExtension">
            <BundleAttributeDefinition Id="Id" />
            <BundleAttributeDefinition Id="Column2" />
        </BundleCustomData>
    </Fragment>

    <Fragment>
        <BundleCustomDataRef Id="BundleCustomTableBA">
            <BundleElement>
                <BundleAttribute Id="Id" Value="1" />
                <BundleAttribute Id="Column2" Value="2" />
            </BundleElement>
        </BundleCustomDataRef>

        <BundleCustomDataRef Id="BundleCustomTableBE">
            <BundleElement>
                <BundleAttribute Id="Id" Value="one" />
                <BundleAttribute Id="Column2" Value="two" />
            </BundleElement>
            <BundleElement>
                <BundleAttribute Id="Column2" Value="&lt;" />
                <BundleAttribute Id="Id" Value="&gt;" />
            </BundleElement>
            <BundleElement>
                <BundleAttribute Id="Id" Value="1" />
                <BundleAttribute Id="Column2" Value="2" />
            </BundleElement>
        </BundleCustomDataRef>

        <BundleExtension Id="CustomTableExtension" SourceFile="fakeba.dll" />
    </Fragment>
</Wix>