I have an application in .net 3.5 C#.
How to update my application and install updates automatically, whenever there is new release available for my application?
I have an application in .net 3.5 C#.
How to update my application and install updates automatically, whenever there is new release available for my application?
There is countless ways which you can do this.
One provided by Microsoft that even Google Chrome uses is called ClickOnce.
There are numerous tutorials online below is just a few:
There are other third party frameworks too as an example see http://autoupdaterdotnet.codeplex.com/
A good question in stack about alternatives to clickonce is a good start if ClickOnce is not what you are looking for: What alternatives are there to ClickOnce?
As commented by other posters you can see other questions in stackoverflow about this topic.