Changes in a Desktop Application - Visual Studio C #

0

I'm starting to create desktop-type applications in Visual Studio C # and I came to the following doubt, after generating an application executable and installing on another computer it is possible to make changes to that application without having to uninstall what is already running ? As if it were an "update package". If there is such, someone could tell me or post some link or sources I can look up on the subject. Thanks in advance to anyone who can help.

Sincerely,

    
asked by anonymous 10.07.2018 / 13:56

1 answer

1

You can use the AutoUpdater.NET nuget, with this nuget through the version of the assembly that you modify in the project properties or in the AssemblyInfo file in the fields:

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

github on how to use nuget is: link

and for installation you can use the program inno setup, it is very intuitive, this program will generate an executable that installs your system.

    
10.07.2018 / 15:06