How to automatically update my application, which is being developed in C #?

I developed my application in C # that uses SQL Server Express as a database. I want to update my application over the Internet. I want to update only myapplication.exe because in the installed folder there is also application.config where the configuration of this server is included, such as server name, instance name. I do not want to touch this file. It is unique to every car. Is there a ready-made mechanism or codes for this? Please show me directions.

+4
source share
2 answers

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

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

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

+4
source

All Articles