diff options
Diffstat (limited to 'src/ext/UI/wixlib/WixUI_Minimal.wxs')
-rw-r--r-- | src/ext/UI/wixlib/WixUI_Minimal.wxs | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/ext/UI/wixlib/WixUI_Minimal.wxs b/src/ext/UI/wixlib/WixUI_Minimal.wxs new file mode 100644 index 00000000..08dba96d --- /dev/null +++ b/src/ext/UI/wixlib/WixUI_Minimal.wxs | |||
@@ -0,0 +1,63 @@ | |||
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 | |||
5 | <!-- | ||
6 | First-time install dialog sequence: | ||
7 | - WixUI_WelcomeEulaDlg | ||
8 | |||
9 | Maintenance dialog sequence: | ||
10 | WixUI_MaintenanceWelcomeDlg | ||
11 | - WixUI_MaintenanceTypeDlg | ||
12 | - WixUI_VerifyReadyDlg | ||
13 | |||
14 | Patch dialog sequence: | ||
15 | - WixUI_WelcomeDlg | ||
16 | - WixUI_VerifyReadyDlg | ||
17 | --> | ||
18 | |||
19 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
20 | <Fragment> | ||
21 | <UI Id="WixUI_Minimal"> | ||
22 | <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /> | ||
23 | <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" /> | ||
24 | <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /> | ||
25 | |||
26 | <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" /> | ||
27 | <Property Id="WixUI_Mode" Value="Minimal" /> | ||
28 | |||
29 | <DialogRef Id="ErrorDlg" /> | ||
30 | <DialogRef Id="FatalError" /> | ||
31 | <DialogRef Id="FilesInUse" /> | ||
32 | <DialogRef Id="MsiRMFilesInUse" /> | ||
33 | <DialogRef Id="PrepareDlg" /> | ||
34 | <DialogRef Id="ProgressDlg" /> | ||
35 | <DialogRef Id="ResumeDlg" /> | ||
36 | <DialogRef Id="UserExit" /> | ||
37 | <DialogRef Id="WelcomeDlg" /> | ||
38 | <DialogRef Id="WelcomeEulaDlg" /> | ||
39 | |||
40 | <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999" /> | ||
41 | |||
42 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" /> | ||
43 | |||
44 | <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg" /> | ||
45 | |||
46 | <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg" /> | ||
47 | <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg" /> | ||
48 | <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg" /> | ||
49 | |||
50 | <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Condition="Installed AND PATCH" /> | ||
51 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2" Condition="Installed AND PATCH" /> | ||
52 | |||
53 | <InstallUISequence> | ||
54 | <Show Dialog="WelcomeDlg" Before="WelcomeEulaDlg" Condition="Installed AND PATCH" /> | ||
55 | <Show Dialog="WelcomeEulaDlg" Before="ProgressDlg" Condition="NOT Installed" /> | ||
56 | </InstallUISequence> | ||
57 | |||
58 | <Property Id="ARPNOMODIFY" Value="1" /> | ||
59 | </UI> | ||
60 | |||
61 | <UIRef Id="WixUI_Common" /> | ||
62 | </Fragment> | ||
63 | </Wix> | ||