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