blob: 8482a57e31c922ef0e16444fca058de908cc2d95 (
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">one</BundleAttribute>
<BundleAttribute Id="Column2">two</BundleAttribute>
</BundleElement>
<BundleElement>
<BundleAttribute Id="Column2"><</BundleAttribute>
<BundleAttribute Id="Id">></BundleAttribute>
</BundleElement>
</BundleCustomData>
<BundleCustomData Id="BundleCustomTableBE" ExtensionId="CustomTableExtension">
<BundleAttributeDefinition Id="Id" />
<BundleAttributeDefinition Id="Column2" />
</BundleCustomData>
</Fragment>
<Fragment>
<BundleCustomDataRef Id="BundleCustomTableBA">
<BundleElement>
<BundleAttribute Id="Id">1</BundleAttribute>
<BundleAttribute Id="Column2">2</BundleAttribute>
</BundleElement>
</BundleCustomDataRef>
<BundleCustomDataRef Id="BundleCustomTableBE">
<BundleElement>
<BundleAttribute Id="Id">one</BundleAttribute>
<BundleAttribute Id="Column2">two</BundleAttribute>
</BundleElement>
<BundleElement>
<BundleAttribute Id="Column2"><</BundleAttribute>
<BundleAttribute Id="Id">></BundleAttribute>
</BundleElement>
<BundleElement>
<BundleAttribute Id="Id">1</BundleAttribute>
<BundleAttribute Id="Column2">2</BundleAttribute>
</BundleElement>
</BundleCustomDataRef>
<BundleExtension Id="CustomTableExtension" SourceFile="fakeba.dll" />
</Fragment>
</Wix>
|