How can I roll-back a ClickOnce application?

后端 未结 9 1448
生来不讨喜
生来不讨喜 2020-12-07 13:34

Is there a way (hacky will do) to allow a user to go back to a previous version of a ClickOnce network deployed application?

I\'ve looked in the docs and API and the

9条回答
  •  庸人自扰
    2020-12-07 14:05

    I understand ClickOnce version check algorythm as follows:

    1. If version installed on client = version deployed to server - do nothing
    2. If client version < server version - upgrade
    3. If client version > server version:
      1. If minimumVersion specified on client >= server version - show error as we have
      2. If minimumVersion specified on client < server version - downgrade
      3. If minimumVersion is not specified on client - downgrade

提交回复
热议问题