mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Refactor: Move ImageFormat to Core.
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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>
|
||||
@@ -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
|
||||
{
|
||||
@@ -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:
|
||||
|
||||
@@ -37,6 +37,7 @@ using System.Collections.Generic;
|
||||
using DiscImageChef.Console;
|
||||
using System.Threading;
|
||||
using DiscImageChef.Filters;
|
||||
using DiscImageChef.Core;
|
||||
|
||||
namespace DiscImageChef.Commands
|
||||
{
|
||||
|
||||
@@ -36,6 +36,7 @@ using System.Text;
|
||||
using System.Collections.Generic;
|
||||
using DiscImageChef.Console;
|
||||
using DiscImageChef.Filters;
|
||||
using DiscImageChef.Core;
|
||||
|
||||
namespace DiscImageChef.Commands
|
||||
{
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
using DiscImageChef.ImagePlugins;
|
||||
using DiscImageChef.Console;
|
||||
using DiscImageChef.Filters;
|
||||
using DiscImageChef.Core;
|
||||
|
||||
namespace DiscImageChef.Commands
|
||||
{
|
||||
|
||||
@@ -36,6 +36,7 @@ using DiscImageChef.Checksums;
|
||||
using System.Collections.Generic;
|
||||
using DiscImageChef.Console;
|
||||
using DiscImageChef.Filters;
|
||||
using DiscImageChef.Core;
|
||||
|
||||
namespace DiscImageChef.Commands
|
||||
{
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
using DiscImageChef.ImagePlugins;
|
||||
using DiscImageChef.Console;
|
||||
using DiscImageChef.Filters;
|
||||
using DiscImageChef.Core;
|
||||
|
||||
namespace DiscImageChef.Commands
|
||||
{
|
||||
|
||||
@@ -35,6 +35,7 @@ using DiscImageChef.ImagePlugins;
|
||||
using System.Collections.Generic;
|
||||
using DiscImageChef.Console;
|
||||
using DiscImageChef.Filters;
|
||||
using DiscImageChef.Core;
|
||||
|
||||
namespace DiscImageChef.Commands
|
||||
{
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user