diff --git a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/SharpZipBaseException.cs b/MelonLoader/ICSharpCode/SharpZipLib/SharpZipBaseException.cs similarity index 96% rename from MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/SharpZipBaseException.cs rename to MelonLoader/ICSharpCode/SharpZipLib/SharpZipBaseException.cs index 85b263d6..3f2c0527 100644 --- a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/SharpZipBaseException.cs +++ b/MelonLoader/ICSharpCode/SharpZipLib/SharpZipBaseException.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; -namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions; +namespace MelonLoader.ICSharpCode.SharpZipLib; /// /// SharpZipBaseException is the base exception class for SharpZipLib. diff --git a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/StreamDecodingException.cs b/MelonLoader/ICSharpCode/SharpZipLib/StreamDecodingException.cs similarity index 96% rename from MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/StreamDecodingException.cs rename to MelonLoader/ICSharpCode/SharpZipLib/StreamDecodingException.cs index 85f79a3b..60cb3ede 100644 --- a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/StreamDecodingException.cs +++ b/MelonLoader/ICSharpCode/SharpZipLib/StreamDecodingException.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; -namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions; +namespace MelonLoader.ICSharpCode.SharpZipLib; /// /// Indicates that an error occurred during decoding of a input stream due to corrupt diff --git a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/StreamUnsupportedException.cs b/MelonLoader/ICSharpCode/SharpZipLib/StreamUnsupportedException.cs similarity index 96% rename from MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/StreamUnsupportedException.cs rename to MelonLoader/ICSharpCode/SharpZipLib/StreamUnsupportedException.cs index a74a77a7..3c121434 100644 --- a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/StreamUnsupportedException.cs +++ b/MelonLoader/ICSharpCode/SharpZipLib/StreamUnsupportedException.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; -namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions; +namespace MelonLoader.ICSharpCode.SharpZipLib; /// /// Indicates that the input stream could not decoded due to known library incompability or missing features diff --git a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/UnexpectedEndOfStreamException.cs b/MelonLoader/ICSharpCode/SharpZipLib/UnexpectedEndOfStreamException.cs similarity index 96% rename from MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/UnexpectedEndOfStreamException.cs rename to MelonLoader/ICSharpCode/SharpZipLib/UnexpectedEndOfStreamException.cs index 063a4154..fe7cd0d4 100644 --- a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/UnexpectedEndOfStreamException.cs +++ b/MelonLoader/ICSharpCode/SharpZipLib/UnexpectedEndOfStreamException.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; -namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions; +namespace MelonLoader.ICSharpCode.SharpZipLib; /// /// Indicates that the input stream could not decoded due to the stream ending before enough data had been provided diff --git a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/ValueOutOfRangeException.cs b/MelonLoader/ICSharpCode/SharpZipLib/ValueOutOfRangeException.cs similarity index 97% rename from MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/ValueOutOfRangeException.cs rename to MelonLoader/ICSharpCode/SharpZipLib/ValueOutOfRangeException.cs index c056119f..fcd7c9ac 100644 --- a/MelonLoader/ICSharpCode/SharpZipLib/Core/Exceptions/ValueOutOfRangeException.cs +++ b/MelonLoader/ICSharpCode/SharpZipLib/ValueOutOfRangeException.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; -namespace MelonLoader.ICSharpCode.SharpZipLib.Core.Exceptions; +namespace MelonLoader.ICSharpCode.SharpZipLib; /// /// Indicates that a value was outside of the expected range when decoding an input stream