Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

clickonce same publish version but assembly version different, update not happening

I have deployed a clickonce application, in my application i have 10 external dlls. Since the code inside my dll files keeps changing and it's tough to redistribute i went with clickonce deployment strategy. But i wanted to know a thing, if i make a change to one of the dll files and upgrade it's assembly version from 1.0.0.0 to 1.0.0.1, but do not change the publish version, it still is 1.0.0.0. Also i have set the update setting to be before application loads. I re ran the setup deployment but it did not run the updated assembly. What is wrong? I'm using VS2008 and C#.NET 2.0

like image 941
Anirudh Goel Avatar asked Jan 22 '26 13:01

Anirudh Goel


1 Answers

ClickOnce only cares about publish version for the whole project. Increment this in your "My Project" Publish tab and publish again.

like image 110
Tom Willwerth Avatar answered Jan 24 '26 11:01

Tom Willwerth