aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/wixlib/wixstdba.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Bal/wixlib/wixstdba.wxs')
-rw-r--r--src/ext/Bal/wixlib/wixstdba.wxs92
1 files changed, 92 insertions, 0 deletions
diff --git a/src/ext/Bal/wixlib/wixstdba.wxs b/src/ext/Bal/wixlib/wixstdba.wxs
new file mode 100644
index 00000000..8181b9b4
--- /dev/null
+++ b/src/ext/Bal/wixlib/wixstdba.wxs
@@ -0,0 +1,92 @@
1<!-- 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. -->
2
3
4<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
5 <!-- RTF License Payload Group -->
6 <Fragment>
7 <PayloadGroup Id="WixStdbaRtfLicensePayloads">
8 <Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=RtfTheme.xml)" />
9 <Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=RtfTheme.wxl)" />
10 <Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
11
12 <Payload Name="!(wix.WixStdbaLicenseRtfName=license.rtf)" Compressed="yes" SourceFile="!(wix.WixStdbaLicenseRtf=LoremIpsumLicense.rtf)" />
13 </PayloadGroup>
14
15 <BundleCustomDataRef Id="WixStdbaInformation">
16 <BundleElement>
17 <BundleAttribute Id="LicenseFile" Value="!(wix.WixStdbaLicenseRtfName=license.rtf)" />
18 </BundleElement>
19 </BundleCustomDataRef>
20 </Fragment>
21
22 <!-- RTF Large License Payload Group -->
23 <Fragment>
24 <PayloadGroup Id="WixStdbaRtfLargeLicensePayloads">
25 <Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=RtfLargeTheme.xml)" />
26 <Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=RtfTheme.wxl)" />
27 <Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
28
29 <Payload Name="!(wix.WixStdbaLicenseRtfName=license.rtf)" Compressed="yes" SourceFile="!(wix.WixStdbaLicenseRtf=LoremIpsumLicense.rtf)" />
30 </PayloadGroup>
31
32 <BundleCustomDataRef Id="WixStdbaInformation">
33 <BundleElement>
34 <BundleAttribute Id="LicenseFile" Value="!(wix.WixStdbaLicenseRtfName=license.rtf)" />
35 </BundleElement>
36 </BundleCustomDataRef>
37 </Fragment>
38
39 <!-- Hyperlink License Payload Group -->
40 <Fragment>
41 <PayloadGroup Id="WixStdbaHyperlinkLicensePayloads">
42 <Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=HyperlinkTheme.xml)" />
43 <Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=HyperlinkTheme.wxl)" />
44 <Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
45 </PayloadGroup>
46
47 <BundleCustomDataRef Id="WixStdbaInformation">
48 <BundleElement>
49 <BundleAttribute Id="LicenseUrl" Value="!(wix.WixStdbaLicenseUrl)" />
50 </BundleElement>
51 </BundleCustomDataRef>
52 </Fragment>
53
54 <!-- Hyperlink Large License Payload Group -->
55 <Fragment>
56 <PayloadGroup Id="WixStdbaHyperlinkLargeLicensePayloads">
57 <Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=HyperlinkLargeTheme.xml)" />
58 <Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=HyperlinkTheme.wxl)" />
59 <Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
60 </PayloadGroup>
61
62 <BundleCustomDataRef Id="WixStdbaInformation">
63 <BundleElement>
64 <BundleAttribute Id="LicenseUrl" Value="!(wix.WixStdbaLicenseUrl)" />
65 </BundleElement>
66 </BundleCustomDataRef>
67 </Fragment>
68
69 <!-- HyperlinkSidebar License Payload Group -->
70 <Fragment>
71 <PayloadGroup Id="WixStdbaHyperlinkSidebarLicensePayloads">
72 <Payload Name="thm.xml" Compressed="yes" SourceFile="!(wix.WixStdbaThemeXml=HyperlinkSidebarTheme.xml)" />
73 <Payload Name="thm.wxl" Compressed="yes" SourceFile="!(wix.WixStdbaThemeWxl=HyperlinkTheme.wxl)" />
74 <Payload Name="logo.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogo=logo.png)" />
75 <Payload Name="logoside.png" Compressed="yes" SourceFile="!(wix.WixStdbaLogoSide=logoside.png)" />
76 </PayloadGroup>
77
78 <BundleCustomDataRef Id="WixStdbaInformation">
79 <BundleElement>
80 <BundleAttribute Id="LicenseUrl" Value="!(wix.WixStdbaLicenseUrl)" />
81 </BundleElement>
82 </BundleCustomDataRef>
83 </Fragment>
84
85 <!-- BootstrapperApplicationData tables definition -->
86 <Fragment>
87 <BundleCustomData Id="WixStdbaInformation">
88 <BundleAttributeDefinition Id="LicenseFile" />
89 <BundleAttributeDefinition Id="LicenseUrl" />
90 </BundleCustomData>
91 </Fragment>
92</Wix>