Move some classes to subfolders

This commit is contained in:
Matt Nadareski
2024-03-05 11:48:29 -05:00
parent 08ef69e7c1
commit 5a3de8e124
10 changed files with 11 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace SabreTools.Matching
namespace SabreTools.Matching.Compare
{
public class NaturalComparer : Comparer<string>, IDisposable
{

View File

@@ -1,6 +1,6 @@
using System.IO;
namespace SabreTools.Matching
namespace SabreTools.Matching.Compare
{
public static class NaturalComparerUtil
{

View File

@@ -14,7 +14,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace SabreTools.Matching
namespace SabreTools.Matching.Compare
{
public class NaturalReversedComparer : Comparer<string>, IDisposable
{

View File

@@ -1,6 +1,6 @@
using System.IO;
namespace SabreTools.Matching
namespace SabreTools.Matching.Content
{
/// <summary>
/// Content matching criteria

View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace SabreTools.Matching
namespace SabreTools.Matching.Content
{
/// <summary>
/// A set of content matches that work together

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using SabreTools.Matching.Content;
namespace SabreTools.Matching
{

View File

@@ -4,6 +4,8 @@ using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using SabreTools.Matching.Content;
using SabreTools.Matching.Paths;
namespace SabreTools.Matching
{

View File

@@ -1,6 +1,6 @@
using System.IO;
namespace SabreTools.Matching
namespace SabreTools.Matching.Paths
{
/// <summary>
/// File path matching criteria

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Linq;
namespace SabreTools.Matching
namespace SabreTools.Matching.Paths
{
/// <summary>
/// Path matching criteria

View File

@@ -2,7 +2,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace SabreTools.Matching
namespace SabreTools.Matching.Paths
{
/// <summary>
/// A set of path matches that work together