Firdavs Kurbonov
Firdavs Kurbonov

Reputation: 1252

How to auto update my application which is developed in c#?

I have developed my application in c# which uses SQL Server Express as a database. I want to update my application through internet. What I want is to update only myapplication.exe Because in the installed folder there is also application.config where configuration of that server is included such as Server name, Instance name. I do not want to touch this file. It is unique for every machine. Is there any ready mechanism or codes to do that? Please show me directions.

Upvotes: 4

Views: 4273

Answers (2)

manojlds
manojlds

Reputation: 301037

There is the Microsoft solution ClickOnce http://msdn.microsoft.com/en-us/library/t71a733d(v=vs.110).aspx

On the open source side, there is Omaha, from Google, powering Google Chrome, Google Earth etc. http://code.google.com/p/omaha/

Also, take a look at Shimmer, by the folks at Gihub https://github.com/github/Shimmer

Upvotes: 4

Related Questions