mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 06:45:11 +00:00
Rename Deserializers to Readers
This commit is contained in:
@@ -114,7 +114,7 @@ Below is a table of all namespaces within the library and what they represent
|
||||
| `SabreTools.Data.ObjectIdentifier` | Object Identifier (OID) parsing |
|
||||
| `SabreTools.Data.Printers` | Export model information in a formatted manner |
|
||||
| `SabreTools.Serialization.CrossModel` | Convert between models; mainly used for metadata files converting to and from a common, `Dictionary`-based model |
|
||||
| `SabreTools.Serialization.Deserializers` | Convert from external sources to models |
|
||||
| `SabreTools.Serialization.Interfaces` | Interfaces used commonly throughout the library |
|
||||
| `SabreTools.Serialization.Readers` | Convert from external sources to models |
|
||||
| `SabreTools.Serialization.Serializers` | Convert from models to external sources |
|
||||
| `SabreTools.Serialization.Wrappers` | Classes that wrap serialization and models to allow for including extension properties |
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class AACSTests
|
||||
{
|
||||
@@ -1,10 +1,10 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Data.Models.ASN1;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class AbstractSyntaxNotationOneTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class AppPkgHeaderTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class ArchiveDotOrgTests
|
||||
{
|
||||
@@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class AttractModeTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class BDPlusTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class BFPKTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class BSPTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class CFBTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class CHDTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class CIATests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class CatalogTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class ClrMameProTests
|
||||
{
|
||||
@@ -2,10 +2,10 @@ using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class CueSheetTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class DosCenterTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class EverdriveSMDBTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class GCFTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class GZipTests
|
||||
{
|
||||
@@ -2,10 +2,10 @@ using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Hashing;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class HashfileTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class IRDTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class InstallShieldArchiveV3Tests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class InstallShieldCabinetTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class LZKWAJTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class LZQBasicTests
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class LZSZDDTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class LinearExecutableTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class ListromTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class ListxmlTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class LogiqxTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class M1Tests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class MSDOSTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class MessTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class MicrosoftCabinetTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class MoPaQTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class N3DSTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class NCFTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class NewExecutableTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class NitroTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class OfflineListTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class OpenMSXTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class PAKTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class PFFTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class PICTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class PKZIPTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class PlayJAudioTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class PlayJPlaylistTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class PortableExecutableTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class QuantumTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class RomCenterTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class SFBTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class SFOTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class SGATests
|
||||
{
|
||||
@@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class SeparatedValueTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class SoftwareListTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class TapeArchiveTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class VBSPTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class VPKTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class WAD3Tests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class WiseOverlayHeaderTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class WiseScriptTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class WiseSectionHeaderTests
|
||||
{
|
||||
@@ -1,8 +1,8 @@
|
||||
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class XMIDTests
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class XZPTests
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using SabreTools.Serialization.Deserializers;
|
||||
using SabreTools.Serialization.Readers;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.Deserializers
|
||||
namespace SabreTools.Serialization.Test.Readers
|
||||
{
|
||||
public class XeMIDTests
|
||||
{
|
||||
@@ -451,7 +451,7 @@ namespace SabreTools.Data.Printers
|
||||
}
|
||||
|
||||
// Create the deserializer
|
||||
var deserializer = new Serialization.Deserializers.AbstractSyntaxNotationOne();
|
||||
var deserializer = new Serialization.Readers.AbstractSyntaxNotationOne();
|
||||
|
||||
for (int i = 0; i < entries.Length; i++)
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.AACS;
|
||||
using SabreTools.IO.Extensions;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class AACS : BaseBinaryDeserializer<MediaKeyBlock>
|
||||
{
|
||||
@@ -3,7 +3,7 @@ using System.IO;
|
||||
using SabreTools.Data.Models.ASN1;
|
||||
using SabreTools.IO.Extensions;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class AbstractSyntaxNotationOne : BaseBinaryDeserializer<TypeLengthValue[]>
|
||||
{
|
||||
@@ -3,7 +3,7 @@ using System.Text;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.PlayStation4.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class AppPkgHeader : BaseBinaryDeserializer<Data.Models.PlayStation4.AppPkgHeader>
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using SabreTools.Data.Models.ArchiveDotOrg;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class ArchiveDotOrg : XmlFile<Files>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.AttractMode;
|
||||
using SabreTools.IO.Readers;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class AttractMode : BaseBinaryDeserializer<MetadataFile>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using SabreTools.Data.Models.BDPlus;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.BDPlus.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class BDPlus : BaseBinaryDeserializer<SVM>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using SabreTools.Data.Models.BFPK;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.BFPK.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class BFPK : BaseBinaryDeserializer<Archive>
|
||||
{
|
||||
@@ -6,7 +6,7 @@ using SabreTools.Data.Models.BSP;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.BSP.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class BSP : BaseBinaryDeserializer<BspFile>
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using System.IO;
|
||||
using SabreTools.Serialization.Interfaces;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
/// <summary>
|
||||
/// Base class for all binary deserializers
|
||||
@@ -7,7 +7,7 @@ using SabreTools.Data.Models.CFB;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.CFB.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class CFB : BaseBinaryDeserializer<Binary>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.CHD;
|
||||
using SabreTools.IO.Extensions;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
// TODO: Expand this to full CHD files eventually
|
||||
public class CHD : BaseBinaryDeserializer<Header>
|
||||
@@ -3,7 +3,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.N3DS;
|
||||
using SabreTools.IO.Extensions;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class CIA : BaseBinaryDeserializer<Data.Models.N3DS.CIA>
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class Catalog : JsonFile<Data.Models.Xbox.Catalog>
|
||||
{
|
||||
@@ -5,7 +5,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.ClrMamePro;
|
||||
using SabreTools.IO.Readers;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class ClrMamePro : BaseBinaryDeserializer<MetadataFile>
|
||||
{
|
||||
@@ -5,7 +5,7 @@ using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using SabreTools.Data.Models.CueSheets;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class CueSheet : BaseBinaryDeserializer<Data.Models.CueSheets.CueSheet>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.DosCenter;
|
||||
using SabreTools.IO.Readers;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class DosCenter : BaseBinaryDeserializer<MetadataFile>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.EverdriveSMDB;
|
||||
using SabreTools.IO.Readers;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class EverdriveSMDB : BaseBinaryDeserializer<MetadataFile>
|
||||
{
|
||||
@@ -3,7 +3,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.GCF;
|
||||
using SabreTools.IO.Extensions;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class GCF : BaseBinaryDeserializer<Data.Models.GCF.File>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using SabreTools.Data.Models.GZIP;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.GZIP.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class GZip : BaseBinaryDeserializer<Archive>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using System.IO;
|
||||
using SabreTools.Data.Models.Hashfile;
|
||||
using SabreTools.Hashing;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class Hashfile : BaseBinaryDeserializer<Data.Models.Hashfile.Hashfile>
|
||||
{
|
||||
@@ -2,7 +2,7 @@ using System.IO;
|
||||
using System.Text;
|
||||
using SabreTools.IO.Extensions;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class IRD : BaseBinaryDeserializer<Data.Models.IRD.File>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using System.Text;
|
||||
using SabreTools.Data.Models.InstallShieldArchiveV3;
|
||||
using SabreTools.IO.Extensions;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class InstallShieldArchiveV3 : BaseBinaryDeserializer<Archive>
|
||||
{
|
||||
@@ -7,7 +7,7 @@ using SabreTools.Data.Models.InstallShieldCabinet;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.InstallShieldCabinet.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class InstallShieldCabinet : BaseBinaryDeserializer<Cabinet>
|
||||
{
|
||||
@@ -2,7 +2,7 @@
|
||||
using System.Text;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
/// <summary>
|
||||
/// Base class for other JSON serializers
|
||||
@@ -4,7 +4,7 @@ using SabreTools.Data.Models.LZ;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.LZ.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class LZKWAJ : BaseBinaryDeserializer<KWAJFile>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using SabreTools.Data.Models.LZ;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.LZ.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class LZQBasic : BaseBinaryDeserializer<QBasicFile>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using SabreTools.Data.Models.LZ;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.LZ.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class LZSZDD : BaseBinaryDeserializer<SZDDFile>
|
||||
{
|
||||
@@ -5,7 +5,7 @@ using SabreTools.Data.Models.LinearExecutable;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.LinearExecutable.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class LinearExecutable : BaseBinaryDeserializer<Executable>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using System.IO;
|
||||
using System.Text;
|
||||
using SabreTools.Data.Models.Listrom;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class Listrom : BaseBinaryDeserializer<MetadataFile>
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using SabreTools.Data.Models.Listxml;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class Listxml : XmlFile<Mame>
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using SabreTools.Data.Models.Logiqx;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class Logiqx : XmlFile<Datafile>
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class M1 : XmlFile<Data.Models.Listxml.M1>
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using SabreTools.Data.Models.MSDOS;
|
||||
using SabreTools.IO.Extensions;
|
||||
using static SabreTools.Data.Models.MSDOS.Constants;
|
||||
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class MSDOS : BaseBinaryDeserializer<Executable>
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace SabreTools.Serialization.Deserializers
|
||||
namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
public class Mess : XmlFile<Data.Models.Listxml.Mess>
|
||||
{
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user