aboutsummaryrefslogtreecommitdiff
path: root/src/ext/UI/wixlib/WixUI_Mondo.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/UI/wixlib/WixUI_Mondo.wxs')
-rw-r--r--src/ext/UI/wixlib/WixUI_Mondo.wxs26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/ext/UI/wixlib/WixUI_Mondo.wxs b/src/ext/UI/wixlib/WixUI_Mondo.wxs
index 92890572..2f883b8b 100644
--- a/src/ext/UI/wixlib/WixUI_Mondo.wxs
+++ b/src/ext/UI/wixlib/WixUI_Mondo.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
@@ -24,8 +22,20 @@ Patch dialog sequence:
24--> 22-->
25 23
26<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 24<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
25 <?foreach WIXUIARCH in X86;X64;A64 ?>
27 <Fragment> 26 <Fragment>
28 <UI Id="WixUI_Mondo"> 27 <UI Id="WixUI_Mondo_$(WIXUIARCH)">
28 <Publish Dialog="LicenseAgreementDlg" Control="Print" Event="DoAction" Value="WixUIPrintEula_$(WIXUIARCH)" />
29 <Publish Dialog="BrowseDlg" Control="OK" Event="DoAction" Value="WixUIValidatePath_$(WIXUIARCH)" Order="3" Condition="NOT WIXUI_DONTVALIDATEPATH" />
30 <Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="WixUIValidatePath_$(WIXUIARCH)" Order="2" Condition="NOT WIXUI_DONTVALIDATEPATH" />
31 </UI>
32
33 <UIRef Id="WixUI_Mondo" />
34 </Fragment>
35 <?endforeach?>
36
37 <Fragment>
38 <UI Id="file WixUI_Mondo">
29 <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /> 39 <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
30 <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" /> 40 <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
31 <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /> 41 <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
@@ -74,14 +84,4 @@ Patch dialog sequence:
74 84
75 <UIRef Id="WixUI_Common" /> 85 <UIRef Id="WixUI_Common" />
76 </Fragment> 86 </Fragment>
77
78 <?foreach WIXUIARCH in X86;X64;A64 ?>
79 <Fragment>
80 <UI Id="WixUI_Mondo_$(WIXUIARCH)">
81 <Publish Dialog="LicenseAgreementDlg" Control="Print" Event="DoAction" Value="WixUIPrintEula_$(WIXUIARCH)" />
82 <Publish Dialog="BrowseDlg" Control="OK" Event="DoAction" Value="WixUIValidatePath_$(WIXUIARCH)" Order="3" Condition="NOT WIXUI_DONTVALIDATEPATH" />
83 <Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="WixUIValidatePath_$(WIXUIARCH)" Order="2" Condition="NOT WIXUI_DONTVALIDATEPATH" />
84 </UI>
85 </Fragment>
86 <?endforeach?>
87</Wix> 87</Wix>