Skip to content

Commit

Permalink
move some files
Browse files Browse the repository at this point in the history
  • Loading branch information
AnakinRaW committed Mar 11, 2024
1 parent 67e3950 commit 5c3cf94
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Linq;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using AnakinRaW.CommonUtilities.FileSystem.Normalization;

namespace AnakinRaW.CommonUtilities.FileSystem;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AnakinRaW.CommonUtilities.FileSystem;
namespace AnakinRaW.CommonUtilities.FileSystem.Normalization;

/// <summary>
/// Determines which directory separator path normalization shall use.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;

namespace AnakinRaW.CommonUtilities.FileSystem.Windows;
namespace AnakinRaW.CommonUtilities.FileSystem.Validation;

/// <summary>
/// A file name validator for the current platform.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AnakinRaW.CommonUtilities.FileSystem.Windows;
namespace AnakinRaW.CommonUtilities.FileSystem.Validation;

/// <summary>
/// Indicates the status of a file name validation.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace AnakinRaW.CommonUtilities.FileSystem.Windows;
namespace AnakinRaW.CommonUtilities.FileSystem.Validation;

/// <summary>
/// Allows validation of file names.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.CompilerServices;

namespace AnakinRaW.CommonUtilities.FileSystem.Windows;
namespace AnakinRaW.CommonUtilities.FileSystem.Validation;

/// <summary>
/// A file name validator for the Linux-based systems.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Runtime.CompilerServices;
using System.Text.RegularExpressions;

namespace AnakinRaW.CommonUtilities.FileSystem.Windows;
namespace AnakinRaW.CommonUtilities.FileSystem.Validation;

/// <summary>
/// A file name validator for the Windows.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Runtime.InteropServices;
using AnakinRaW.CommonUtilities.FileSystem.Validation;
using Xunit;

namespace AnakinRaW.CommonUtilities.FileSystem.Windows.Test;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Runtime.InteropServices;
using AnakinRaW.CommonUtilities.FileSystem.Validation;
using Xunit;

namespace AnakinRaW.CommonUtilities.FileSystem.Windows.Test;
Expand Down

0 comments on commit 5c3cf94

Please sign in to comment.