dotnet / deployment-tools

This repo contains the code to build the .NET deployment tools and installers for all supported platforms, as well as the sources to .NET deployment tools.
MIT License
163 stars 50 forks source link

Automatic user-settings upgrade #178

Open simmotech opened 2 years ago

simmotech commented 2 years ago

If I understand correctly, configuration files for user settings used to be automatically migrated when a ClickOnce app was updated. This seems to be no longer the case for .NET 6.

Solutions on the web talk about using MyApp.Properties.Settings.Default.Upgrade() but this didn't work for me and looking at code in LocalFileSettingsProvider showed why: it was designed only to support a directory structure where each Version's settings were stored in a folder of the Version's name and moving to the parent directory allowed previous Versions to be found. But since ClickOnce apps are effectively different apps, this can't work.

Where is the code that used to do the automatic settings upgrade?

This is the last piece in the puzzle for me in getting ClickOnce to work fully under .NET 6.

dckorben commented 1 year ago

I have the same issue with moving to higher versions of .NET along with #74 . Alot of this is likely all interrelated.