Move ProtectionTool to Core.Utilities

This commit is contained in:
Matt Nadareski
2024-05-23 13:42:53 -04:00
parent e1961612c0
commit 893fd34d36
3 changed files with 3 additions and 2 deletions

View File

@@ -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)

View File

@@ -9,7 +9,7 @@ using psxt001z;
#pragma warning disable SYSLIB1045 // Convert to 'GeneratedRegexAttribute'.
namespace MPF.Core
namespace MPF.Core.Utilities
{
public static class ProtectionTool
{

View File

@@ -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