Renamespace for proper pluralization

This commit is contained in:
Adam Hathcock
2016-09-26 11:49:49 +01:00
parent c24cdc66ed
commit d732e3cfa4
188 changed files with 335 additions and 339 deletions

View File

@@ -23,7 +23,6 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
using SharpCompress.Compressor.ADC;
using System.IO;
using Xunit;

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using SharpCompress.Archive;
using SharpCompress.Archives;
using SharpCompress.Common;
using Xunit;

View File

@@ -1,8 +1,8 @@
using System;
using System.IO;
using System.Linq;
using SharpCompress.Archive;
using SharpCompress.Archive.GZip;
using SharpCompress.Archives;
using SharpCompress.Archives.GZip;
using Xunit;
namespace SharpCompress.Test

View File

@@ -1,7 +1,7 @@
using System.IO;
using SharpCompress.Common;
using SharpCompress.Writer;
using SharpCompress.Writer.GZip;
using SharpCompress.Writers;
using SharpCompress.Writers.GZip;
using Xunit;
namespace SharpCompress.Test

View File

@@ -1,7 +1,7 @@
using System.IO;
using System.Linq;
using SharpCompress.Archive;
using SharpCompress.Archive.Rar;
using SharpCompress.Archives;
using SharpCompress.Archives.Rar;
using SharpCompress.Common;
using Xunit;

View File

@@ -1,8 +1,8 @@
using System.IO;
using System.Linq;
using SharpCompress.Common;
using SharpCompress.Reader;
using SharpCompress.Reader.Rar;
using SharpCompress.Readers;
using SharpCompress.Readers.Rar;
using Xunit;
namespace SharpCompress.Test

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.IO;
using SharpCompress.Common;
using SharpCompress.Reader;
using SharpCompress.Readers;
using Xunit;
namespace SharpCompress.Test

View File

@@ -1,5 +1,4 @@
using System.IO;
using SharpCompress.Compressor.LZMA;
using Xunit;
namespace SharpCompress.Test.Streams

View File

@@ -1,10 +1,10 @@
using System.IO;
using System.Linq;
using SharpCompress.Archive;
using SharpCompress.Archive.Tar;
using SharpCompress.Archives;
using SharpCompress.Archives.Tar;
using SharpCompress.Common;
using SharpCompress.Writer;
using SharpCompress.Writers;
using Xunit;
namespace SharpCompress.Test

View File

@@ -1,10 +1,10 @@
using System.Collections.Generic;
using System.IO;
using SharpCompress.Common;
using SharpCompress.Reader;
using SharpCompress.Reader.Tar;
using Xunit;
using System.Linq;
using SharpCompress.Readers;
using SharpCompress.Readers.Tar;
namespace SharpCompress.Test
{

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System.Threading;
using Microsoft.Extensions.PlatformAbstractions;
using SharpCompress.Common;
using SharpCompress.Reader;
using SharpCompress.Readers;
using Xunit;
namespace SharpCompress.Test

View File

@@ -1,9 +1,8 @@
using System;
using System.IO;
using SharpCompress.Common;
using SharpCompress.IO;
using SharpCompress.Reader;
using SharpCompress.Writer;
using SharpCompress.Readers;
using SharpCompress.Writers;
namespace SharpCompress.Test
{

View File

@@ -3,10 +3,10 @@ using System;
using System.IO;
using System.Linq;
using System.Text;
using SharpCompress.Archive;
using SharpCompress.Archive.Zip;
using SharpCompress.Archives;
using SharpCompress.Archives.Zip;
using SharpCompress.Common;
using SharpCompress.Writer;
using SharpCompress.Writers;
using Xunit;
namespace SharpCompress.Test

View File

@@ -1,9 +1,9 @@
using System;
using System.IO;
using SharpCompress.Common;
using SharpCompress.Reader;
using SharpCompress.Reader.Zip;
using SharpCompress.Writer;
using SharpCompress.Readers;
using SharpCompress.Readers.Zip;
using SharpCompress.Writers;
using Xunit;
namespace SharpCompress.Test