fix: resolve build errors — AppSettings, GlobalUsings, namespace aliases

This commit is contained in:
SuperDooper
2026-05-08 12:34:00 +02:00
parent d2ba7365b0
commit 28a449b060
+3 -3
View File
@@ -48,8 +48,8 @@ public class UpdateManager : INotifyPropertyChanged
set
{
Set(ref _betaChannel, value);
Properties.Settings.Default.BetaChannel = value;
Properties.Settings.Default.Save();
AppSettings.Default.BetaChannel = value;
AppSettings.Default.Save();
}
}
@@ -59,7 +59,7 @@ public class UpdateManager : INotifyPropertyChanged
public UpdateManager()
{
_betaChannel = Properties.Settings.Default.BetaChannel;
_betaChannel = AppSettings.Default.BetaChannel;
}
public async Task CheckForUpdatesAsync()