I have a simple C# program where I need to update the version of it through the program (not manually. i.e. via a user input or so). Is there any way to do it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try to download reflector.net , it has a self update facility.Basically you can add code to your program to check a url or webservice that send a message that you have a new version number.Then you prompt the user telling him that there is an update and on a different thread download the update,once you get the flag that the download is complete you unzip the update and then run another exe that will update your application or and you can shutdown you application in between…..