Ashish
Ashish

Reputation: 11

How to get the updated version in click once deployment

I have an application deployed with ClickOnce .Now when i rebuild the application with some changes , and put it in the share folder from where it is installed and launch the appluication it doesnt takes the latest version instead it just launches the old version.

  1. How should i check (which file) for new version.
  2. is there any setting in the build file which says to check the new version.

Can somebodyy pleas help me with this??

thanks, ashish.

Upvotes: 1

Views: 341

Answers (2)

RobinDotNet
RobinDotNet

Reputation: 11877

In the Updates dialog, do you have the checkbox checked to look for updates before running the application? (Don't fill in the Update URL if it is the same as the original install URL).

Also, you need to deploy a new version -- it will not recognize it as an update if the version number is the same as the previous deployment.

Upvotes: 1

RationalGeek
RationalGeek

Reputation: 9599

You have to choose which update strategy you want to use, and configure your application as such. There are details on this page:

http://msdn.microsoft.com/en-us/library/s22azw1e%28v=VS.100%29.aspx

Upvotes: 2

Related Questions