Fix namespaces.

This commit is contained in:
2020-07-20 15:43:45 +01:00
parent aeb3630d26
commit f0a8221b3f
4 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=mediatypefromdevice/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

View File

@@ -39,10 +39,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using Aaru.CommonTypes;
using Aaru.CommonTypes.Interfaces;
namespace Aaru.Partitions namespace Aaru.CommonTypes.Interfaces
{ {
/// <summary>Abstract class to implement partitioning schemes interpreting plugins.</summary> /// <summary>Abstract class to implement partitioning schemes interpreting plugins.</summary>
public interface IPartition public interface IPartition

View File

@@ -40,7 +40,6 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using Aaru.CommonTypes.Interfaces; using Aaru.CommonTypes.Interfaces;
using Aaru.Partitions;
namespace Aaru.CommonTypes namespace Aaru.CommonTypes
{ {

View File

@@ -42,6 +42,7 @@ using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using Aaru.Console; using Aaru.Console;
using Aaru.Helpers;
using Marshal = Aaru.Helpers.Marshal; using Marshal = Aaru.Helpers.Marshal;
namespace Aaru.CommonTypes.Structs.Devices.ATA namespace Aaru.CommonTypes.Structs.Devices.ATA