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