Create Frontend.Tools namespace

This commit is contained in:
Matt Nadareski
2024-05-28 14:19:59 -04:00
parent c10b3d28bd
commit 503a6a8cdc
13 changed files with 13 additions and 6 deletions

View File

@@ -156,6 +156,7 @@
- Decouple execution contexts from Options class
- Combine remaining Core into Frontend
- Remove Core library, fix build
- Create Frontend.Tools namespace
### 3.1.9a (2024-05-21)

View File

@@ -2,6 +2,7 @@
using System.IO;
using BinaryObjectScanner;
using MPF.Frontend;
using MPF.Frontend.Tools;
using SabreTools.RedumpLib.Data;
using SabreTools.RedumpLib.Web;

View File

@@ -7,6 +7,7 @@ using System.Text;
using System.Threading.Tasks;
using BinaryObjectScanner;
using MPF.ExecutionContexts;
using MPF.Frontend.Tools;
using MPF.Processors;
using Newtonsoft.Json;
using SabreTools.RedumpLib;

View File

@@ -5,7 +5,7 @@ using System.Reflection;
using System.Text;
using SabreTools.RedumpLib.Data;
namespace MPF.Frontend
namespace MPF.Frontend.Tools
{
public static class FrontendTool
{

View File

@@ -5,7 +5,7 @@ using Newtonsoft.Json;
using SabreTools.RedumpLib;
using SabreTools.RedumpLib.Data;
namespace MPF.Frontend
namespace MPF.Frontend.Tools
{
public static class OptionsLoader
{

View File

@@ -8,7 +8,7 @@ using BinaryObjectScanner;
#pragma warning disable SYSLIB1045 // Convert to 'GeneratedRegexAttribute'.
namespace MPF.Frontend
namespace MPF.Frontend.Tools
{
public static class ProtectionTool
{

View File

@@ -9,7 +9,7 @@ using SabreTools.RedumpLib;
using SabreTools.RedumpLib.Data;
using SabreTools.RedumpLib.Web;
namespace MPF.Frontend
namespace MPF.Frontend.Tools
{
/// <summary>
/// Generator for SubmissionInfo objects

View File

@@ -6,6 +6,7 @@ using System.Linq;
using System.Threading.Tasks;
using BinaryObjectScanner;
using MPF.Frontend.ComboBoxItems;
using MPF.Frontend.Tools;
using SabreTools.RedumpLib.Data;
namespace MPF.Frontend.ViewModels

View File

@@ -1,6 +1,7 @@
using System;
using System.ComponentModel;
using System.IO;
using MPF.Frontend.Tools;
using MPF.Processors;
namespace MPF.Frontend.ViewModels

View File

@@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using MPF.Frontend.ComboBoxItems;
using MPF.Frontend.Tools;
using SabreTools.RedumpLib.Data;
namespace MPF.Frontend.ViewModels

View File

@@ -6,6 +6,7 @@ using System.Linq;
using System.Threading.Tasks;
using BinaryObjectScanner;
using MPF.Frontend.ComboBoxItems;
using MPF.Frontend.Tools;
using SabreTools.IO;
using SabreTools.RedumpLib.Data;

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
using System.IO;
using MPF.Frontend;
using MPF.Frontend.Tools;
using SabreTools.RedumpLib;
using SabreTools.RedumpLib.Data;
using Xunit;

View File

@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using MPF.Frontend;
using MPF.Frontend.Tools;
using Xunit;
namespace MPF.Test.Library