aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/WixUI_Minimal.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixlib/WixUI_Minimal.wxs')
-rw-r--r--src/wixlib/WixUI_Minimal.wxs23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/wixlib/WixUI_Minimal.wxs b/src/wixlib/WixUI_Minimal.wxs
index 8c8ef2c8..08dba96d 100644
--- a/src/wixlib/WixUI_Minimal.wxs
+++ b/src/wixlib/WixUI_Minimal.wxs
@@ -1,5 +1,4 @@
1<?xml version="1.0" encoding="UTF-8"?> 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<!-- 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 2
4 3
5 4
@@ -38,22 +37,22 @@ Patch dialog sequence:
38 <DialogRef Id="WelcomeDlg" /> 37 <DialogRef Id="WelcomeDlg" />
39 <DialogRef Id="WelcomeEulaDlg" /> 38 <DialogRef Id="WelcomeEulaDlg" />
40 39
41 <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish> 40 <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999" />
42 41
43 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish> 42 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" />
44 43
45 <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish> 44 <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg" />
46 45
47 <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> 46 <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg" />
48 <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> 47 <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg" />
49 <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish> 48 <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg" />
50 49
51 <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">Installed AND PATCH</Publish> 50 <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Condition="Installed AND PATCH" />
52 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">Installed AND PATCH</Publish> 51 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2" Condition="Installed AND PATCH" />
53 52
54 <InstallUISequence> 53 <InstallUISequence>
55 <Show Dialog="WelcomeDlg" Before="WelcomeEulaDlg">Installed AND PATCH</Show> 54 <Show Dialog="WelcomeDlg" Before="WelcomeEulaDlg" Condition="Installed AND PATCH" />
56 <Show Dialog="WelcomeEulaDlg" Before="ProgressDlg">NOT Installed</Show> 55 <Show Dialog="WelcomeEulaDlg" Before="ProgressDlg" Condition="NOT Installed" />
57 </InstallUISequence> 56 </InstallUISequence>
58 57
59 <Property Id="ARPNOMODIFY" Value="1" /> 58 <Property Id="ARPNOMODIFY" Value="1" />