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