문제

WiX is shipped with some UI options. I created a test project to try upgrade.

I use Mondo UI for this matter. The upgrade runs fine, the question is, the UI does not react to it as upgrade but as plain installation. I don't know if upgrade has supported UI or not and this is mainly the question:

Is it supported or am I missing something?

도움이 되었습니까?

해결책

Try to add your own chain of dialogs. For example:

<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="20">
            ( Installed AND (PATCH OR REINSTALL ) ) OR WIX_UPGRADE_DETECTED
          </Publish>
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">REINSTALL OR WIX_UPGRADE_DETECTED</Publish>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top