Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I rollback clickOnce if I have a minimum required version?

Tags:

.net

clickonce

We decided to use the minimumRequiredVersion in our clickOnce application manifest, and now when we try to rollback to a previous version when the user launches the application it fails to start. It says the application manifest has a earlier version than the required version and the user can not use the application. We did not have this problem withou the minimumRequiredVersion, but we would like to use that.

like image 866
emilam Avatar asked Dec 30 '22 08:12

emilam


1 Answers

You have to deploy a new version with a higher version number. There is no built in rollback feature.

like image 70
chilltemp Avatar answered Jan 29 '23 22:01

chilltemp