More modernization

- Split generic "common" libraries into specific libraries
- Use other packages in lieu of custom code
- General cleanup
This commit is contained in:
2023-04-05 16:06:38 -04:00
parent f480a6c373
commit b5f570688d
46 changed files with 1210 additions and 656 deletions

View File

@@ -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();
}
}
}
}