| 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 | First-time install dialog sequence: |
| 5 | - WixUI_WelcomeEulaDlg |
| 6 | |
| 7 | Maintenance dialog sequence: |
| 8 | WixUI_MaintenanceWelcomeDlg |
| 9 | - WixUI_MaintenanceTypeDlg |
| 10 | - WixUI_VerifyReadyDlg |
| 11 | |
| 12 | Patch dialog sequence: |
| 13 | - WixUI_WelcomeDlg |
| 14 | - WixUI_VerifyReadyDlg |
| 15 | --> |
| 16 | |
| 17 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 18 | <?foreach WIXUIARCH in X86;X64;A64 ?> |
| 19 | <Fragment> |
| 20 | <UI Id="WixUI_Minimal_$(WIXUIARCH)" /> |
| 21 | <UIRef Id="WixUI_Minimal" /> |
| 22 | </Fragment> |
| 23 | <?endforeach?> |
| 24 | |
| 25 | <Fragment> |
| 26 | <UI Id="file WixUI_Minimal"> |
| 27 | <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /> |
| 28 | <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" /> |
| 29 | <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /> |
| 30 | |
| 31 | <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" /> |
| 32 | |
| 33 | <DialogRef Id="ErrorDlg" /> |
| 34 | <DialogRef Id="FatalError" /> |
| 35 | <DialogRef Id="FilesInUse" /> |
| 36 | <DialogRef Id="MsiRMFilesInUse" /> |
| 37 | <DialogRef Id="PrepareDlg" /> |
| 38 | <DialogRef Id="ProgressDlg" /> |
| 39 | <DialogRef Id="ResumeDlg" /> |
| 40 | <DialogRef Id="UserExit" /> |
| 41 | <DialogRef Id="WelcomeDlg" /> |
| 42 | <DialogRef Id="WelcomeEulaDlg" /> |
| 43 | |
| 44 | <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999" /> |
| 45 | |
| 46 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" /> |
| 47 | |
| 48 | <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg" /> |
| 49 | |
| 50 | <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg" /> |
| 51 | <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg" /> |
| 52 | <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg" /> |
| 53 | |
| 54 | <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Condition="Installed AND PATCH" /> |
| 55 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2" Condition="Installed AND PATCH" /> |
| 56 | |
| 57 | <InstallUISequence> |
| 58 | <Show Dialog="override WelcomeDlg" Before="WelcomeEulaDlg" Condition="Installed AND PATCH" /> |
| 59 | </InstallUISequence> |
| 60 | |
| 61 | <Property Id="ARPNOMODIFY" Value="1" /> |
| 62 | </UI> |
| 63 | |
| 64 | <UIRef Id="WixUI_Common" /> |
| 65 | </Fragment> |
| 66 | </Wix> |