Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application update framework for .net? [closed]

I have googled over the internet and read some forums, but I could not find a really good solution to suit my requirements. I am looking for an automatic application update framework for my project.

Which do you think the best application update framework for .net?

Requirements:

  • free
  • easy to use and integrate with existing .net project
  • check/download/install updates automatically from a server
  • if it is needed, update also its referenced new dll-s from the server
  • if new dll is referenced to the app, should be also downloadad automatically from the server
  • if new items (e.g. XML files, language resource files) needed for a new version, also download them

UPDATE:

  • installation folder must be changeable by the user (clickonce is not an option)
like image 604
Tom Avatar asked Mar 12 '26 16:03

Tom


1 Answers

check this http://www.codeproject.com/KB/install/DDayUpdate_Part1.aspx out - it combines ClickOnce (Update machnism) + Windows installer (installation) to make possible what you are asking for...

Another (perhaps better?) option: http://www.codeproject.com/KB/cs/DotNetAutoUpdateClient.aspx

like image 102
Yahia Avatar answered Mar 15 '26 04:03

Yahia