main
wxs 53 lines 1.96 KB
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
3 <Fragment>
4 <PackageGroup Id="BundlePackages">
5 <PackageGroupRef Id="MinimalPackageGroup" />
6 </PackageGroup>
7
8 <BundleCustomData Id="BundleCustomTableBA">
9 <BundleAttributeDefinition Id="Id" />
10 <BundleAttributeDefinition Id="Column2" />
11
12 <BundleElement>
13 <BundleAttribute Id="Id" Value="one" />
14 <BundleAttribute Id="Column2" Value="two" />
15 </BundleElement>
16 <BundleElement>
17 <BundleAttribute Id="Column2" Value="&lt;" />
18 <BundleAttribute Id="Id" Value="&gt;" />
19 </BundleElement>
20 </BundleCustomData>
21
22 <BundleCustomData Id="BundleCustomTableBE" ExtensionId="CustomTableExtension">
23 <BundleAttributeDefinition Id="Id" />
24 <BundleAttributeDefinition Id="Column2" />
25 </BundleCustomData>
26 </Fragment>
27
28 <Fragment>
29 <BundleCustomDataRef Id="BundleCustomTableBA">
30 <BundleElement>
31 <BundleAttribute Id="Id" Value="1" />
32 <BundleAttribute Id="Column2" Value="2" />
33 </BundleElement>
34 </BundleCustomDataRef>
35
36 <BundleCustomDataRef Id="BundleCustomTableBE">
37 <BundleElement>
38 <BundleAttribute Id="Id" Value="one" />
39 <BundleAttribute Id="Column2" Value="two" />
40 </BundleElement>
41 <BundleElement>
42 <BundleAttribute Id="Column2" Value="&lt;" />
43 <BundleAttribute Id="Id" Value="&gt;" />
44 </BundleElement>
45 <BundleElement>
46 <BundleAttribute Id="Id" Value="1" />
47 <BundleAttribute Id="Column2" Value="2" />
48 </BundleElement>
49 </BundleCustomDataRef>
50
51 <BootstrapperExtension Id="CustomTableExtension" SourceFile="fakeba.dll" Name="fakebext.dll" />
52 </Fragment>
53 </Wix>