Internal rename of OID namespace to have Data prefix

This commit is contained in:
Matt Nadareski
2025-09-26 12:29:52 -04:00
parent 12c292d038
commit 3681682fe8
8 changed files with 8 additions and 8 deletions

View File

@@ -108,12 +108,12 @@ Below is a table of all namespaces within the library and what they represent
| Namespace | Description |
| --- | --- |
| `SabreTools.Data.ObjectIdentifier` | Object Identifier (OID) parsing |
| `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.Extensions` | Extension methods for both models and wrappers |
| `SabreTools.Serialization.Interfaces` | Interfaces used commonly throughout the library |
| `SabreTools.Serialization.Models` | Models representing different file and structure types |
| `SabreTools.Serialization.ObjectIdentifier` | Object Identifier (OID) parsing |
| `SabreTools.Serialization.Printers` | Export model information in a formatted manner |
| `SabreTools.Serialization.Serializers` | Convert from models to external sources |
| `SabreTools.Serialization.Wrappers` | Classes that wrap serialization and models to allow for including extension properties |

View File

@@ -1,4 +1,4 @@
using SabreTools.Serialization.ObjectIdentifier;
using SabreTools.Data.ObjectIdentifier;
using Xunit;
namespace SabreTools.Serialization.Test.ObjectIdentifier

View File

@@ -1,8 +1,8 @@
using System;
using System.Numerics;
using System.Text;
using SabreTools.Data.ObjectIdentifier;
using SabreTools.Serialization.Models.ASN1;
using SabreTools.Serialization.ObjectIdentifier;
namespace SabreTools.Serialization.Extensions
{

View File

@@ -1,4 +1,4 @@
namespace SabreTools.Serialization.ObjectIdentifier
namespace SabreTools.Data.ObjectIdentifier
{
/// <summary>
/// Methods related to Object Identifiers (OID) and ASN.1 notation

View File

@@ -4,7 +4,7 @@ using System.Text;
#pragma warning disable CS0162 // Unreachable code detected
#pragma warning disable CS0164 // This label has not been referenced
namespace SabreTools.Serialization.ObjectIdentifier
namespace SabreTools.Data.ObjectIdentifier
{
/// <summary>
/// Methods related to Object Identifiers (OID) and OID-IRI formatting

View File

@@ -1,7 +1,7 @@
using System;
using System.Text;
namespace SabreTools.Serialization.ObjectIdentifier
namespace SabreTools.Data.ObjectIdentifier
{
/// <summary>
/// Methods related to Object Identifiers (OID) and OID-IRI formatting

View File

@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
namespace SabreTools.Serialization.ObjectIdentifier
namespace SabreTools.Data.ObjectIdentifier
{
/// <summary>
/// Methods related to Object Identifiers (OID)

View File

@@ -1,6 +1,6 @@
using System;
namespace SabreTools.Serialization.ObjectIdentifier
namespace SabreTools.Data.ObjectIdentifier
{
/// <summary>
/// Methods related to Object Identifiers (OID) and dot notation