Refactor: Moved PluginBase to Core.

This commit is contained in:
2017-05-27 14:54:15 +01:00
parent 33f10dc202
commit 4000786a41
12 changed files with 49 additions and 3 deletions

View File

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

View File

@@ -9,7 +9,6 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Core</RootNamespace>
<AssemblyName>DiscImageChef.Core</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
@@ -35,6 +34,25 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PluginBase.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DiscImageChef.Console\DiscImageChef.Console.csproj">
<Project>{CCAA7AFE-C094-4D82-A66D-630DE8A3F545}</Project>
<Name>DiscImageChef.Console</Name>
</ProjectReference>
<ProjectReference Include="..\DiscImageChef.Filesystems\DiscImageChef.Filesystems.csproj">
<Project>{D7016DF2-5A5E-4524-B40D-BA2D59576688}</Project>
<Name>DiscImageChef.Filesystems</Name>
</ProjectReference>
<ProjectReference Include="..\DiscImageChef.Partitions\DiscImageChef.Partitions.csproj">
<Project>{DA7AB65D-B5BA-4003-8893-A51BB071BA2F}</Project>
<Name>DiscImageChef.Partitions</Name>
</ProjectReference>
<ProjectReference Include="..\DiscImageChef.DiscImages\DiscImageChef.DiscImages.csproj">
<Project>{74032CBC-339B-42F3-AF6F-E96C261F3E6A}</Project>
<Name>DiscImageChef.DiscImages</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -38,7 +38,7 @@ using DiscImageChef.PartPlugins;
using DiscImageChef.Filesystems;
using DiscImageChef.Console;
namespace DiscImageChef
namespace DiscImageChef.Core
{
public class PluginBase
{

View File

@@ -1,3 +1,15 @@
2017-05-27 Natalia Portillo <claunia@claunia.com>
* Commands/Ls.cs:
* Commands/Analyze.cs:
* Commands/Formats.cs:
* DetectImageFormat.cs:
* DiscImageChef.csproj:
* Commands/DumpMedia.cs:
* Commands/ExtractFiles.cs:
* Commands/CreateSidecar.cs:
Refactor: Moved PluginBase to Core.
2017-05-23 Natalia Portillo <claunia@claunia.com>
* Commands/MediaInfo.cs:

View File

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

View File

@@ -41,6 +41,7 @@ using DiscImageChef.CommonTypes;
using DiscImageChef.PartPlugins;
using DiscImageChef.Filters;
using DiscImageChef.Decoders.PCMCIA;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -35,6 +35,7 @@ using System.Collections.Generic;
using System.IO;
using DiscImageChef.CommonTypes;
using DiscImageChef.Console;
using DiscImageChef.Core;
using DiscImageChef.Decoders.PCMCIA;
using DiscImageChef.Devices;
using DiscImageChef.Filesystems;

View File

@@ -38,6 +38,7 @@ using DiscImageChef.ImagePlugins;
using DiscImageChef.PartPlugins;
using System.IO;
using DiscImageChef.Filters;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -36,6 +36,7 @@ using DiscImageChef.PartPlugins;
using DiscImageChef.Filesystems;
using DiscImageChef.Console;
using DiscImageChef.Filters;
using DiscImageChef.Core;
namespace DiscImageChef.Commands
{

View File

@@ -33,6 +33,7 @@
using System;
using System.Collections.Generic;
using DiscImageChef.Console;
using DiscImageChef.Core;
using DiscImageChef.Filesystems;
using DiscImageChef.Filters;
using DiscImageChef.ImagePlugins;

View File

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

View File

@@ -44,7 +44,6 @@
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Plugins.cs" />
<Compile Include="Options.cs" />
<Compile Include="Commands\Formats.cs" />
<Compile Include="Commands\Analyze.cs" />
@@ -241,6 +240,10 @@
<Project>{D571B8EF-903D-4353-BDD5-B834F9F029EF}</Project>
<Name>DiscImageChef.Filters</Name>
</ProjectReference>
<ProjectReference Include="..\DiscImageChef.Core\DiscImageChef.Core.csproj">
<Project>{679659B8-25D0-4279-B632-56EF8F94ADC0}</Project>
<Name>DiscImageChef.Core</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\LICENSE.MIT">