fix: resolve build errors — AppSettings, GlobalUsings, namespace aliases
This commit is contained in:
@@ -48,8 +48,8 @@ public class UpdateManager : INotifyPropertyChanged
|
|||||||
set
|
set
|
||||||
{
|
{
|
||||||
Set(ref _betaChannel, value);
|
Set(ref _betaChannel, value);
|
||||||
Properties.Settings.Default.BetaChannel = value;
|
AppSettings.Default.BetaChannel = value;
|
||||||
Properties.Settings.Default.Save();
|
AppSettings.Default.Save();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -59,7 +59,7 @@ public class UpdateManager : INotifyPropertyChanged
|
|||||||
|
|
||||||
public UpdateManager()
|
public UpdateManager()
|
||||||
{
|
{
|
||||||
_betaChannel = Properties.Settings.Default.BetaChannel;
|
_betaChannel = AppSettings.Default.BetaChannel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task CheckForUpdatesAsync()
|
public async Task CheckForUpdatesAsync()
|
||||||
|
|||||||
Reference in New Issue
Block a user