From 78d648d90be178fc5c965d0bd10b87efaba5cca6 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 27 May 2024 23:48:48 -0400 Subject: [PATCH] Move ProcessingQueue to Frontend --- CHANGELIST.md | 1 + {MPF.Core => MPF.Frontend}/ProcessingQueue.cs | 2 +- MPF.UI/UserControls/LogOutput.xaml.cs | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) rename {MPF.Core => MPF.Frontend}/ProcessingQueue.cs (99%) diff --git a/CHANGELIST.md b/CHANGELIST.md index 7488b5c1..57c61bd2 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -116,6 +116,7 @@ - Update Redumper to build 371 - Tools always run in separate window - Move ConsoleLogger to Check CLI +- Move ProcessingQueue to Frontend ### 3.1.9a (2024-05-21) diff --git a/MPF.Core/ProcessingQueue.cs b/MPF.Frontend/ProcessingQueue.cs similarity index 99% rename from MPF.Core/ProcessingQueue.cs rename to MPF.Frontend/ProcessingQueue.cs index 576afc18..95de4d49 100644 --- a/MPF.Core/ProcessingQueue.cs +++ b/MPF.Frontend/ProcessingQueue.cs @@ -7,7 +7,7 @@ using System.Collections.Concurrent; using System.Threading; using System.Threading.Tasks; -namespace MPF.Core +namespace MPF.Frontend { public sealed class ProcessingQueue : IDisposable { diff --git a/MPF.UI/UserControls/LogOutput.xaml.cs b/MPF.UI/UserControls/LogOutput.xaml.cs index 1afa373e..ff3e6622 100644 --- a/MPF.UI/UserControls/LogOutput.xaml.cs +++ b/MPF.UI/UserControls/LogOutput.xaml.cs @@ -6,6 +6,7 @@ using System.Windows.Documents; using System.Windows.Media; using System.Windows.Threading; using MPF.Core; +using MPF.Frontend; #pragma warning disable IDE1006 // Naming Styles