From f0a8221b3f0ff8c6fd9436213d6cf8fac6f762f7 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 20 Jul 2020 15:43:45 +0100 Subject: [PATCH] Fix namespaces. --- Aaru.CommonTypes.csproj.DotSettings | 2 ++ Interfaces/IPartition.cs | 4 +--- PluginBase.cs | 1 - Structs/Devices/ATA/Identify.cs | 1 + 4 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 Aaru.CommonTypes.csproj.DotSettings diff --git a/Aaru.CommonTypes.csproj.DotSettings b/Aaru.CommonTypes.csproj.DotSettings new file mode 100644 index 0000000..b76a6ba --- /dev/null +++ b/Aaru.CommonTypes.csproj.DotSettings @@ -0,0 +1,2 @@ + + True \ No newline at end of file diff --git a/Interfaces/IPartition.cs b/Interfaces/IPartition.cs index cff1148..84b95d8 100644 --- a/Interfaces/IPartition.cs +++ b/Interfaces/IPartition.cs @@ -39,10 +39,8 @@ using System; using System.Collections.Generic; -using Aaru.CommonTypes; -using Aaru.CommonTypes.Interfaces; -namespace Aaru.Partitions +namespace Aaru.CommonTypes.Interfaces { /// Abstract class to implement partitioning schemes interpreting plugins. public interface IPartition diff --git a/PluginBase.cs b/PluginBase.cs index c5d4704..620cd59 100644 --- a/PluginBase.cs +++ b/PluginBase.cs @@ -40,7 +40,6 @@ using System; using System.Collections.Generic; using System.Linq; using Aaru.CommonTypes.Interfaces; -using Aaru.Partitions; namespace Aaru.CommonTypes { diff --git a/Structs/Devices/ATA/Identify.cs b/Structs/Devices/ATA/Identify.cs index 9704107..643c3c7 100644 --- a/Structs/Devices/ATA/Identify.cs +++ b/Structs/Devices/ATA/Identify.cs @@ -42,6 +42,7 @@ using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; using System.Text; using Aaru.Console; +using Aaru.Helpers; using Marshal = Aaru.Helpers.Marshal; namespace Aaru.CommonTypes.Structs.Devices.ATA