blob: 8181b9b4227aa341020c13560fd9c4813d0d07ab (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<!-- RTF License Payload Group -->
<Fragment>
<PayloadGroup Id="WixStdbaRtfLicensePayloads">
<Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=RtfTheme.xml)" />
<Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=RtfTheme.wxl)" />
<Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
<Payload Name="!(wix.WixStdbaLicenseRtfName=license.rtf)" Compressed="yes" SourceFile="!(wix.WixStdbaLicenseRtf=LoremIpsumLicense.rtf)" />
</PayloadGroup>
<BundleCustomDataRef Id="WixStdbaInformation">
<BundleElement>
<BundleAttribute Id="LicenseFile" Value="!(wix.WixStdbaLicenseRtfName=license.rtf)" />
</BundleElement>
</BundleCustomDataRef>
</Fragment>
<!-- RTF Large License Payload Group -->
<Fragment>
<PayloadGroup Id="WixStdbaRtfLargeLicensePayloads">
<Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=RtfLargeTheme.xml)" />
<Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=RtfTheme.wxl)" />
<Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
<Payload Name="!(wix.WixStdbaLicenseRtfName=license.rtf)" Compressed="yes" SourceFile="!(wix.WixStdbaLicenseRtf=LoremIpsumLicense.rtf)" />
</PayloadGroup>
<BundleCustomDataRef Id="WixStdbaInformation">
<BundleElement>
<BundleAttribute Id="LicenseFile" Value="!(wix.WixStdbaLicenseRtfName=license.rtf)" />
</BundleElement>
</BundleCustomDataRef>
</Fragment>
<!-- Hyperlink License Payload Group -->
<Fragment>
<PayloadGroup Id="WixStdbaHyperlinkLicensePayloads">
<Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=HyperlinkTheme.xml)" />
<Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=HyperlinkTheme.wxl)" />
<Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
</PayloadGroup>
<BundleCustomDataRef Id="WixStdbaInformation">
<BundleElement>
<BundleAttribute Id="LicenseUrl" Value="!(wix.WixStdbaLicenseUrl)" />
</BundleElement>
</BundleCustomDataRef>
</Fragment>
<!-- Hyperlink Large License Payload Group -->
<Fragment>
<PayloadGroup Id="WixStdbaHyperlinkLargeLicensePayloads">
<Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=HyperlinkLargeTheme.xml)" />
<Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=HyperlinkTheme.wxl)" />
<Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
</PayloadGroup>
<BundleCustomDataRef Id="WixStdbaInformation">
<BundleElement>
<BundleAttribute Id="LicenseUrl" Value="!(wix.WixStdbaLicenseUrl)" />
</BundleElement>
</BundleCustomDataRef>
</Fragment>
<!-- HyperlinkSidebar License Payload Group -->
<Fragment>
<PayloadGroup Id="WixStdbaHyperlinkSidebarLicensePayloads">
<Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=HyperlinkSidebarTheme.xml)" />
<Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=HyperlinkTheme.wxl)" />
<Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
<Payload Name="logoside.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogoSide=logoside.png)" />
</PayloadGroup>
<BundleCustomDataRef Id="WixStdbaInformation">
<BundleElement>
<BundleAttribute Id="LicenseUrl" Value="!(wix.WixStdbaLicenseUrl)" />
</BundleElement>
</BundleCustomDataRef>
</Fragment>
<!-- BootstrapperApplicationData tables definition -->
<Fragment>
<BundleCustomData Id="WixStdbaInformation">
<BundleAttributeDefinition Id="LicenseFile" />
<BundleAttributeDefinition Id="LicenseUrl" />
</BundleCustomData>
</Fragment>
</Wix>
|