From 28a449b060194823951f3192af159f237ebad3d6 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 12:34:00 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20resolve=20build=20errors=20=E2=80=94=20A?= =?UTF-8?q?ppSettings,=20GlobalUsings,=20namespace=20aliases?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- windows/UpdateManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/UpdateManager.cs b/windows/UpdateManager.cs index ddca548..08efddf 100644 --- a/windows/UpdateManager.cs +++ b/windows/UpdateManager.cs @@ -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()