Refactor: Move Statistics to Core.

This commit is contained in:
2017-05-27 15:24:07 +01:00
parent 0c6617edf8
commit ad8bde7eac
5 changed files with 26 additions and 2 deletions

View File

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

View File

@@ -31,11 +31,13 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PluginBase.cs" /> <Compile Include="PluginBase.cs" />
<Compile Include="ImageFormat.cs" /> <Compile Include="ImageFormat.cs" />
<Compile Include="Statistics.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\DiscImageChef.Console\DiscImageChef.Console.csproj"> <ProjectReference Include="..\DiscImageChef.Console\DiscImageChef.Console.csproj">
@@ -58,6 +60,18 @@
<Project>{D571B8EF-903D-4353-BDD5-B834F9F029EF}</Project> <Project>{D571B8EF-903D-4353-BDD5-B834F9F029EF}</Project>
<Name>DiscImageChef.Filters</Name> <Name>DiscImageChef.Filters</Name>
</ProjectReference> </ProjectReference>
<ProjectReference Include="..\DiscImageChef.Settings\DiscImageChef.Settings.csproj">
<Project>{5C4C7BAA-CF60-4233-84ED-39CB2312AF38}</Project>
<Name>DiscImageChef.Settings</Name>
</ProjectReference>
<ProjectReference Include="..\DiscImageChef.Devices\DiscImageChef.Devices.csproj">
<Project>{57BB2341-AB62-48FD-91B8-46F5A2F9ED51}</Project>
<Name>DiscImageChef.Devices</Name>
</ProjectReference>
<ProjectReference Include="..\DiscImageChef.CommonTypes\DiscImageChef.CommonTypes.csproj">
<Project>{F2B84194-26EB-4227-B1C5-6602517E85AE}</Project>
<Name>DiscImageChef.CommonTypes</Name>
</ProjectReference>
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project> </Project>

View File

@@ -1,3 +1,8 @@
2017-05-27 Natalia Portillo <claunia@claunia.com>
* DiscImageChef.csproj:
Refactor: Move Statistics to Core.
2017-05-27 Natalia Portillo <claunia@claunia.com> 2017-05-27 Natalia Portillo <claunia@claunia.com>
* Commands/Decode.cs: * Commands/Decode.cs:

View File

@@ -36,10 +36,10 @@
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Core" /> <Reference Include="System.Core" />
<Reference Include="System.Xml" />
<Reference Include="CommandLine"> <Reference Include="CommandLine">
<HintPath>..\packages\CommandLineParser.2.1.1-beta\lib\net40\CommandLine.dll</HintPath> <HintPath>..\packages\CommandLineParser.2.1.1-beta\lib\net40\CommandLine.dll</HintPath>
</Reference> </Reference>
<Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Main.cs" /> <Compile Include="Main.cs" />
@@ -65,7 +65,6 @@
<Compile Include="Core\Checksum.cs" /> <Compile Include="Core\Checksum.cs" />
<Compile Include="Commands\DeviceReport.cs" /> <Compile Include="Commands\DeviceReport.cs" />
<Compile Include="Commands\Configure.cs" /> <Compile Include="Commands\Configure.cs" />
<Compile Include="Core\Statistics.cs" />
<Compile Include="Commands\Statistics.cs" /> <Compile Include="Commands\Statistics.cs" />
<Compile Include="Core\IBGLog.cs" /> <Compile Include="Core\IBGLog.cs" />
<Compile Include="Core\MHDDLog.cs" /> <Compile Include="Core\MHDDLog.cs" />