How to do an update in my application in WPF after it is installed?

1

I already found several programs that create an installer for my application, but I'm worried when I need to make updates to the system, I needed it to be something automatic, when the user logs in, the system would check if there are any updates, if there is one the system itself lowers the update and updates. Does anyone have something like this or any tips?

    
asked by anonymous 05.08.2014 / 17:02

1 answer

3

There is a Microsoft technology called ClickOnce . You need to study and become familiar with how it works. Visual Studio already has everything you need to generate your application installer with ClickOnce. I use it on a system I did for a client and it works fine.

    
10.08.2014 / 16:41