Refactor: Move ImageFormat to Core.

This commit is contained in:
2017-05-27 15:17:20 +01:00
parent 4000786a41
commit 0c6617edf8
11 changed files with 30 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2017-05-27 Natalia Portillo <claunia@claunia.com>
* ImageFormat.cs:
* DiscImageChef.Core.csproj: Refactor: Move ImageFormat to
Core.
2017-05-27 Natalia Portillo <claunia@claunia.com>
* PluginBase.cs:

View File

@@ -35,6 +35,7 @@
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PluginBase.cs" />
<Compile Include="ImageFormat.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DiscImageChef.Console\DiscImageChef.Console.csproj">
@@ -53,6 +54,10 @@
<Project>{74032CBC-339B-42F3-AF6F-E96C261F3E6A}</Project>
<Name>DiscImageChef.DiscImages</Name>
</ProjectReference>
<ProjectReference Include="..\DiscImageChef.Filters\DiscImageChef.Filters.csproj">
<Project>{D571B8EF-903D-4353-BDD5-B834F9F029EF}</Project>
<Name>DiscImageChef.Filters</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -34,8 +34,9 @@ using System;
using DiscImageChef.Filters;
using DiscImageChef.Console;
using DiscImageChef.Core;
using DiscImageChef.ImagePlugins;
namespace DiscImageChef.ImagePlugins
namespace DiscImageChef.Core
{
public static class ImageFormat
{

View File

@@ -1,3 +1,14 @@
2017-05-27 Natalia Portillo <claunia@claunia.com>
* Commands/Decode.cs:
* Commands/Verify.cs:
* Commands/Compare.cs:
* Commands/Entropy.cs:
* Commands/Checksum.cs:
* Commands/PrintHex.cs:
* DiscImageChef.csproj:
Refactor: Move ImageFormat to Core.
2017-05-27 Natalia Portillo <claunia@claunia.com>
* Commands/Ls.cs:

View File

@@ -37,6 +37,7 @@ using System.Collections.Generic;
using DiscImageChef.Console;
using System.Threading;
using DiscImageChef.Filters;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -36,6 +36,7 @@ using System.Text;
using System.Collections.Generic;
using DiscImageChef.Console;
using DiscImageChef.Filters;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -33,6 +33,7 @@
using DiscImageChef.ImagePlugins;
using DiscImageChef.Console;
using DiscImageChef.Filters;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -36,6 +36,7 @@ using DiscImageChef.Checksums;
using System.Collections.Generic;
using DiscImageChef.Console;
using DiscImageChef.Filters;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -33,6 +33,7 @@
using DiscImageChef.ImagePlugins;
using DiscImageChef.Console;
using DiscImageChef.Filters;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -35,6 +35,7 @@ using DiscImageChef.ImagePlugins;
using System.Collections.Generic;
using DiscImageChef.Console;
using DiscImageChef.Filters;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -54,7 +54,6 @@
<Compile Include="Commands\PrintHex.cs" />
<Compile Include="Commands\Decode.cs" />
<Compile Include="Commands\Entropy.cs" />
<Compile Include="DetectImageFormat.cs" />
<Compile Include="Commands\DeviceInfo.cs" />
<Compile Include="Commands\MediaInfo.cs" />
<Compile Include="Commands\Benchmark.cs">