I have re-released a program of mine about 5 times now to fix bugs that have come up. I know that under the publish feature of Visual Studio 2010 pro, I can tell it to check for updates at a location but I also believe the Install Shield set up has a way of doing this as well. I'm curious what the best or most preferred way to have the program check for updates is?
What is the best way for a program to check for updates?
Collapse
X
-
Simplest way is to upload an xml file on server which contains details regarding latest version, download link, size, etc. Download this file from your application and check the current version with the version in downloaded xml file.
Next time whenever you release new updates, just update xml file.
Comment