Tag Archives: installer

5 cents hint – msi installer is not updating exe or additional dll-s

After struggling with the issue found simple solution. Open the AssemblyInfo.cs file for your project, and change AssemblyVersion to [assembly: AssemblyVersion(“1.0.*”)] then the assembly version information is automatically updated each time you build the project. Then comment out or remove the AssemblyFileVersion entry from the same file, so the file version defaults the same as… Read More »

C# Application Launcher with autoupdate. Part 1

Today we start article about application launcher with autoupdate feature. By default Visual Studio offers ClickOnce publishing. It has lot of nice features with all kind bells  and whistles. But there area also some shortcomings like hardcoded url for update and install, no option to have simultaneously installed multiple versions of same application, no option to pass… Read More »