mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-02-16 10:58:31 -05:00
More modernization
- Split generic "common" libraries into specific libraries - Use other packages in lieu of custom code - General cleanup
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using Common.Update;
|
||||
using CKaczor.ApplicationUpdate;
|
||||
using FeedCenter.Data;
|
||||
using FeedCenter.Properties;
|
||||
using System;
|
||||
@@ -33,7 +33,7 @@ namespace FeedCenter
|
||||
|
||||
#region Member variables
|
||||
|
||||
private readonly List<ProgressStep> _progressSteps = new List<ProgressStep>();
|
||||
private readonly List<ProgressStep> _progressSteps = new();
|
||||
private readonly Dispatcher _dispatcher;
|
||||
private readonly BackgroundWorker _backgroundWorker;
|
||||
|
||||
@@ -205,7 +205,7 @@ namespace FeedCenter
|
||||
private static bool UpdateDatabase()
|
||||
{
|
||||
// Update the database
|
||||
// Database.UpdateDatabase();
|
||||
// Database.UpdateDatabase();
|
||||
|
||||
return true;
|
||||
}
|
||||
@@ -225,4 +225,4 @@ namespace FeedCenter
|
||||
_backgroundWorker?.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user