From 893fd34d360faccc50acb3dea4f61bb124d57994 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 23 May 2024 13:42:53 -0400 Subject: [PATCH] Move ProtectionTool to Core.Utilities --- CHANGELIST.md | 1 + MPF.Core/{ => Utilities}/ProtectionTool.cs | 2 +- MPF.Test/Library/ProtectionTests.cs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) rename MPF.Core/{ => Utilities}/ProtectionTool.cs (99%) diff --git a/CHANGELIST.md b/CHANGELIST.md index 81e9a61c..261a774e 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -80,6 +80,7 @@ - Move SubmissionInfoTool to Core.Utilities - Fix build - Rename Protection to ProtectionTool +- Move ProtectionTool to Core.Utilities ### 3.1.9a (2024-05-21) diff --git a/MPF.Core/ProtectionTool.cs b/MPF.Core/Utilities/ProtectionTool.cs similarity index 99% rename from MPF.Core/ProtectionTool.cs rename to MPF.Core/Utilities/ProtectionTool.cs index 966b79c8..54ee6dd0 100644 --- a/MPF.Core/ProtectionTool.cs +++ b/MPF.Core/Utilities/ProtectionTool.cs @@ -9,7 +9,7 @@ using psxt001z; #pragma warning disable SYSLIB1045 // Convert to 'GeneratedRegexAttribute'. -namespace MPF.Core +namespace MPF.Core.Utilities { public static class ProtectionTool { diff --git a/MPF.Test/Library/ProtectionTests.cs b/MPF.Test/Library/ProtectionTests.cs index b35c95f7..b24a6f57 100644 --- a/MPF.Test/Library/ProtectionTests.cs +++ b/MPF.Test/Library/ProtectionTests.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; -using MPF.Core; +using MPF.Core.Utilities; using Xunit; namespace MPF.Test.Library