I've come to understand that I can preserve user settings from previous versions using code like this:
if (Settings.Default.UpgradeRequired)
{
Settings.Default.Upgrade();
Settings.Default.UpgradeRequired = false;
Settings.Default.Save();
}
However, that doesn't seem to work if I change a setting's roaming property. Is there any way to get the setting values to carry over and not reset when I change a setting from roaming to local or vice versa?
EDIT: I looked into a possible way to upgrade roaming settings to local settings using the GetPreviousVersion()
method, but it doesn't work because if the previous version of a setting was roaming when the current setting isn't, the previous version isn't returned at all.
To reproduce:
- Make a setting named MySetting.
- Change MySetting's Roaming property to
true
. - Make sure MySetting's scope is
User
. Run the following code:
Console.WriteLine(Settings.Default.GetPreviousVersion("MySetting")); Settings.Default.MySetting = "Not the default value."; Settings.Default.Save();
- Increment the assembly version.
- Run the code again, noticing that the new value is outputted.
- Change MySetting's Roaming property to
false
. - Increment the assembly version again.
- Run the code again, noticing that the default value is outputted.
If you know which properties have changed from roaming=true to roaming=false, then you can manually add the
SettingsManageabilityAttribute
to theSettingsProperty.Attributes
dictionary, useGetPreviousVersion
to retrieve the previous value, then remove the attribute from the dictionary to clean-up: