aboutsummaryrefslogtreecommitdiff
path: root/src/ext/UI/wixlib/WixUI_FeatureTree.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/UI/wixlib/WixUI_FeatureTree.wxs')
-rw-r--r--src/ext/UI/wixlib/WixUI_FeatureTree.wxs22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ext/UI/wixlib/WixUI_FeatureTree.wxs b/src/ext/UI/wixlib/WixUI_FeatureTree.wxs
index e50839d3..6b9b1cf3 100644
--- a/src/ext/UI/wixlib/WixUI_FeatureTree.wxs
+++ b/src/ext/UI/wixlib/WixUI_FeatureTree.wxs
@@ -1,7 +1,5 @@
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. --> 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 2
3
4
5<!-- 3<!--
6First-time install dialog sequence: 4First-time install dialog sequence:
7 - WixUI_WelcomeDlg 5 - WixUI_WelcomeDlg
@@ -22,8 +20,18 @@ Patch dialog sequence:
22--> 20-->
23 21
24<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 22<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
23 <?foreach WIXUIARCH in X86;X64;A64 ?>
25 <Fragment> 24 <Fragment>
26 <UI Id="WixUI_FeatureTree"> 25 <UI Id="WixUI_FeatureTree_$(WIXUIARCH)">
26 <Publish Dialog="LicenseAgreementDlg" Control="Print" Event="DoAction" Value="WixUIPrintEula_$(WIXUIARCH)" />
27 </UI>
28
29 <UIRef Id="WixUI_FeatureTree" />
30 </Fragment>
31 <?endforeach?>
32
33 <Fragment>
34 <UI Id="file WixUI_FeatureTree">
27 <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /> 35 <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
28 <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" /> 36 <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
29 <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /> 37 <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
@@ -65,12 +73,4 @@ Patch dialog sequence:
65 73
66 <UIRef Id="WixUI_Common" /> 74 <UIRef Id="WixUI_Common" />
67 </Fragment> 75 </Fragment>
68
69 <?foreach WIXUIARCH in X86;X64;A64 ?>
70 <Fragment>
71 <UI Id="WixUI_FeatureTree_$(WIXUIARCH)">
72 <Publish Dialog="LicenseAgreementDlg" Control="Print" Event="DoAction" Value="WixUIPrintEula_$(WIXUIARCH)" />
73 </UI>
74 </Fragment>
75 <?endforeach?>
76</Wix> 76</Wix>