From c8e7a167b73c115586d790e377ddab015e7616cd Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 27 Feb 2020 00:33:24 +0000 Subject: [PATCH] Rename namespace. --- Aaru.Helpers.csproj | 2 +- ArrayFill.cs | 2 +- ArrayIsEmpty.cs | 2 +- BigEndianBitConverter.cs | 2 +- BitEndian.cs | 2 +- CHS.cs | 2 +- CompareBytes.cs | 2 +- CountBits.cs | 2 +- DateHandlers.cs | 4 ++-- Marshal.cs | 2 +- MarshallingPropertiesAttribute.cs | 2 +- PrintHex.cs | 4 ++-- StringHandlers.cs | 2 +- Swapping.cs | 2 +- 14 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Aaru.Helpers.csproj b/Aaru.Helpers.csproj index 552f664..f8cc5d7 100644 --- a/Aaru.Helpers.csproj +++ b/Aaru.Helpers.csproj @@ -6,7 +6,7 @@ 2.0 {F8BDF57B-1571-4CD0-84B3-B422088D359A} Library - DiscImageChef.Helpers + Aaru.Helpers Aaru.Helpers $(Version) false diff --git a/ArrayFill.cs b/ArrayFill.cs index 1e38eab..8967c98 100644 --- a/ArrayFill.cs +++ b/ArrayFill.cs @@ -27,7 +27,7 @@ using System; using System.Text; -namespace DiscImageChef +namespace Aaru { public static partial class ArrayHelpers { diff --git a/ArrayIsEmpty.cs b/ArrayIsEmpty.cs index e2e5837..01819ce 100644 --- a/ArrayIsEmpty.cs +++ b/ArrayIsEmpty.cs @@ -32,7 +32,7 @@ using System.Linq; -namespace DiscImageChef +namespace Aaru { public static partial class ArrayHelpers { diff --git a/BigEndianBitConverter.cs b/BigEndianBitConverter.cs index 8167082..323ae7d 100644 --- a/BigEndianBitConverter.cs +++ b/BigEndianBitConverter.cs @@ -33,7 +33,7 @@ using System; using System.Linq; -namespace DiscImageChef +namespace Aaru { /// /// Converts base data types to an array of bytes, and an array of bytes to base data types. All info taken from diff --git a/BitEndian.cs b/BitEndian.cs index 3008cbb..8a3d3fd 100644 --- a/BitEndian.cs +++ b/BitEndian.cs @@ -36,7 +36,7 @@ // Copyright © 2011-2020 Natalia Portillo // ****************************************************************************/ -namespace DiscImageChef.Helpers +namespace Aaru.Helpers { /// Describes the endianness of bits on a data structure public enum BitEndian diff --git a/CHS.cs b/CHS.cs index 0ca4148..211f5be 100644 --- a/CHS.cs +++ b/CHS.cs @@ -30,7 +30,7 @@ // Copyright © 2011-2020 Natalia Portillo // ****************************************************************************/ -namespace DiscImageChef.Helpers +namespace Aaru.Helpers { public static class CHS { diff --git a/CompareBytes.cs b/CompareBytes.cs index 5cd4209..c6c1e6e 100644 --- a/CompareBytes.cs +++ b/CompareBytes.cs @@ -30,7 +30,7 @@ // Copyright © 2011-2020 Natalia Portillo // ****************************************************************************/ -namespace DiscImageChef +namespace Aaru { public static partial class ArrayHelpers { diff --git a/CountBits.cs b/CountBits.cs index d583d65..6fb6629 100644 --- a/CountBits.cs +++ b/CountBits.cs @@ -30,7 +30,7 @@ // Copyright © 2011-2020 Natalia Portillo // ****************************************************************************/ -namespace DiscImageChef.Helpers +namespace Aaru.Helpers { public static class CountBits { diff --git a/DateHandlers.cs b/DateHandlers.cs index ddfdf28..ad5805b 100644 --- a/DateHandlers.cs +++ b/DateHandlers.cs @@ -32,9 +32,9 @@ using System; using System.Text; -using DiscImageChef.Console; +using Aaru.Console; -namespace DiscImageChef +namespace Aaru { public static class DateHandlers { diff --git a/Marshal.cs b/Marshal.cs index 4070a0d..62c1e63 100644 --- a/Marshal.cs +++ b/Marshal.cs @@ -35,7 +35,7 @@ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -namespace DiscImageChef.Helpers +namespace Aaru.Helpers { /// Provides methods to marshal binary data into C# structs public static class Marshal diff --git a/MarshallingPropertiesAttribute.cs b/MarshallingPropertiesAttribute.cs index abc1069..ca01438 100644 --- a/MarshallingPropertiesAttribute.cs +++ b/MarshallingPropertiesAttribute.cs @@ -38,7 +38,7 @@ using System; -namespace DiscImageChef.Helpers +namespace Aaru.Helpers { /// Defines properties to help marshalling structs from binary data [AttributeUsage(AttributeTargets.Struct)] diff --git a/PrintHex.cs b/PrintHex.cs index 4669b6e..9771ed0 100644 --- a/PrintHex.cs +++ b/PrintHex.cs @@ -31,9 +31,9 @@ // ****************************************************************************/ using System.Text; -using DiscImageChef.Console; +using Aaru.Console; -namespace DiscImageChef +namespace Aaru { public static class PrintHex { diff --git a/StringHandlers.cs b/StringHandlers.cs index 3f2bcce..a3cd1d3 100644 --- a/StringHandlers.cs +++ b/StringHandlers.cs @@ -33,7 +33,7 @@ using System; using System.Text; -namespace DiscImageChef +namespace Aaru { public static class StringHandlers { diff --git a/Swapping.cs b/Swapping.cs index e1389ef..af22c4d 100644 --- a/Swapping.cs +++ b/Swapping.cs @@ -32,7 +32,7 @@ using System.Runtime.CompilerServices; -namespace DiscImageChef +namespace Aaru { public static class Swapping {