moved namespaces

This commit is contained in:
Adam Hathcock
2026-08-06 09:13:22 +01:00
parent 6f497d73bf
commit 839df5f5d9
14 changed files with 18 additions and 8 deletions

View File

@@ -4,6 +4,7 @@ using System.Threading;
using System.Threading.Tasks;
using SharpCompress.Archives.Tar;
using SharpCompress.Common;
using SharpCompress.Detection;
using SharpCompress.Factories;
using SharpCompress.IO;
using SharpCompress.Providers;

View File

@@ -11,6 +11,7 @@ using SharpCompress.Common;
using SharpCompress.Common.Ace.Headers;
using SharpCompress.Common.Rar;
using SharpCompress.Common.Zip;
using SharpCompress.Detection;
using SharpCompress.IO;
using SharpCompress.Readers;

View File

@@ -11,6 +11,7 @@ using SharpCompress.Common;
using SharpCompress.Common.Rar;
using SharpCompress.Common.Zip;
using SharpCompress.Common.Zip.Headers;
using SharpCompress.Detection;
using SharpCompress.IO;
using SharpCompress.Readers;
using AceMainHeader = SharpCompress.Common.Ace.Headers.AceMainHeader;

View File

@@ -1,6 +1,6 @@
using System;
namespace SharpCompress.Archives;
namespace SharpCompress.Detection;
/// <summary>
/// Specifies the APIs available for an archive format.

View File

@@ -1,6 +1,6 @@
using SharpCompress.Common;
namespace SharpCompress.Archives;
namespace SharpCompress.Detection;
/// <summary>
/// Identifies an archive format without enumerating its entries.

View File

@@ -1,6 +1,6 @@
using System;
namespace SharpCompress.Archives;
namespace SharpCompress.Detection;
/// <summary>
/// Identifies which archive data is encrypted.

View File

@@ -1,4 +1,4 @@
namespace SharpCompress.Archives;
namespace SharpCompress.Detection;
/// <summary>
/// Contains metadata collected by fully inspecting an archive.

View File

@@ -1,6 +1,6 @@
using System;
namespace SharpCompress.Archives;
namespace SharpCompress.Detection;
/// <summary>
/// Identifies conditions that prevented complete archive metadata inspection.

View File

@@ -1,4 +1,4 @@
namespace SharpCompress.Archives;
namespace SharpCompress.Detection;
/// <summary>
/// Describes whether archive metadata could be collected completely.

View File

@@ -1,4 +1,4 @@
namespace SharpCompress.Archives;
namespace SharpCompress.Detection;
/// <summary>
/// Contains ZIP-specific metadata.