Move OptionsLoader to Core.Frontend

This commit is contained in:
Matt Nadareski
2024-05-23 14:26:16 -04:00
parent 13d7d83dbb
commit ac744a1e6d
5 changed files with 5 additions and 6 deletions

View File

@@ -92,6 +92,7 @@
- Move DumpEnvironment to Core.Frontend
- Move Options to Core.Frontend
- Remove useless using statement
- Move OptionsLoader to Core.Frontend
### 3.1.9a (2024-05-21)

View File

@@ -3,7 +3,6 @@ using System.IO;
using BinaryObjectScanner;
using MPF.Core;
using MPF.Core.Frontend;
using MPF.Core.Utilities;
using SabreTools.RedumpLib.Data;
using SabreTools.RedumpLib.Web;

View File

@@ -1,12 +1,12 @@
using System;
using System.Collections.Generic;
using System.IO;
using MPF.Core.Frontend;
using MPF.Core.Utilities;
using Newtonsoft.Json;
using SabreTools.RedumpLib;
using SabreTools.RedumpLib.Data;
namespace MPF.Core.Utilities
namespace MPF.Core.Frontend
{
public static class OptionsLoader
{

View File

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

View File

@@ -15,11 +15,11 @@ namespace MPF.Core.Frontend.ViewModels
/// <summary>
/// Access to the current options
/// </summary>
public Frontend.Options Options
public Options Options
{
get => _options;
}
private readonly Frontend.Options _options;
private readonly Options _options;
/// <summary>
/// Indicates if SelectionChanged events can be executed