How to install Bugfixes for my Apps?

Hi,
Let's say I make a program with Version 1.0 . Someone installs it on a PC. Some days later I find a bug and fix it. Now my Version is V 1.1 . What is the best way to deliver the bugfix  Should I make a new Setup Project, but then the client has two versions of my software on his machine. Or should I just make a program, that copies the new files over the old ones  But is it then possible for the user to uninstall the Application via Uninstall
Thanks, Rainer.


Answer this question

How to install Bugfixes for my Apps?

  • barkest

    If you just copy the files the uninstall should still work for any files that were installed as part of the original package. However any new files you add in your patch will not automatically be included in the uninstall.

    If you create a deploment project in .NET, I seem to remember there was a property to tell it whether you want to uninstall previous versions (RemovePrevious or something...), so you could try looking at that too...

  • RFabian

    Make a setup project and set remove previous versjon = true
  • How to install Bugfixes for my Apps?