2015-10-05 21:20:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
<ProjectGuid>{57BB2341-AB62-48FD-91B8-46F5A2F9ED51}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<RootNamespace>DiscImageChef.Devices</RootNamespace>
|
|
|
|
|
<AssemblyName>DiscImageChef.Devices</AssemblyName>
|
2016-08-09 15:34:26 +01:00
|
|
|
<ReleaseVersion>3.2.99.2</ReleaseVersion>
|
2015-10-05 21:20:25 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<ConsolePause>false</ConsolePause>
|
* DiscImageChef.CommonTypes/MediaTypeFromSCSI.cs:
* DiscImageChef.CommonTypes/DiscImageChef.CommonTypes.csproj:
Added method to calculate MediaType from SCSI parameters
(mode, density, medium type, device type, etc).
* DiscImageChef.Metadata/DeviceReport.cs:
Added command to guess drive and media parameters and output
an XML report of them.
* DiscImageChef/Commands/DeviceReport.cs:
* DiscImageChef.Metadata/DiscImageChef.Metadata.csproj:
Added command to guess drive and media parameters and output
an XML report of them.
* DiscImageChef/Commands/DumpMedia.cs:
Added preliminary command to dump media. Only SCSI for now.
CDs and tapes are not supported. Errors are blalanty
ignored. Options are incomplete. Not yet usable.
* DiscImageChef/Core/Checksum.cs:
* DiscImageChef/Commands/CreateSidecar.cs:
Moved checksum generation to a separate class.
* CICMMetadata:
Added support for ADIP.
* DiscImageChef.CommonTypes/MediaType.cs:
Added parameters of UDO media.
Moved DataPlay outside of Iomega, as it's not from that
manufacturer.
Added missing Exatape media and corrected 160m XL one.
Added SyJet media.
Added all ECMA defined magneto-optical (sectors calculated
from specifications, unchecked).
Added PD media.
Added Imation 320Gb RDX.
Added generic USB flash drives.
* DiscImageChef.Decoders/SCSI/Enums.cs:
Make enumerations public.
* DiscImageChef.Decoders/SCSI/Inquiry.cs:
* DiscImageChef.Devices/Device/Constructor.cs:
Trim space padded strings on SCSI INQUIRY.
* DiscImageChef.Devices/Device/ScsiCommands/MMC.cs:
Added PREVENT ALLOW MEDIUM REMOVAL.
Added START STOP UNIT.
* DiscImageChef.Devices/Device/ScsiCommands/NEC.cs:
Rename NEC methods.
* DiscImageChef.Devices/Device/ScsiCommands/Pioneer.cs:
Corrected Pioneer transfer length calculation.
* DiscImageChef.Devices/Device/ScsiCommands/Plextor.cs:
Renamed Plextor methods.
* DiscImageChef.Devices/Device/ScsiCommands/SPC.cs:
Renamed SSC PREVENT ALLOW MEDIUM REMOVAL to uncollide with
MMC same name but different command.
* DiscImageChef.Devices/DiscImageChef.Devices.csproj:
Set platform target to x86 (does it really matter?).
* DiscImageChef.Devices/Linux/Command.cs:
Reduced allocation for readlink() to current kernel
MAX_PATH.
* DiscImageChef.Devices/Linux/Enums.cs:
Modified Linux ioctl to 32-bit. Works on 64-bit also. Solves
commands not working on 32-bit environments.
* DiscImageChef.DiscImages/ZZZRawImage.cs:
Changed ECMA-184 and ECMA-183 enums.
* DiscImageChef.Metadata/Dimensions.cs:
Added all ECMA defined magneto-opticals.
Added PD media.
Added 320Gb RDX.
Corrected Exatape 160m XL.
Added Exatape 22m and 28m.
* DiscImageChef.Metadata/MediaType.cs:
Added 356mm magneto-optical media.
Changed ECMA-184 and ECMA-183 enums.
Added USB generic flash drive.
* DiscImageChef/Commands/DeviceInfo.cs:
Corrected SCSI INQUIRY naming.
Corrected SCSI MODE SENSE (6) parameters.
Reduced SCSI MODE SENSE timeout, some devices just get stuck
with unsupported MODE SENSE commanda and must be left to
timeout.
Changed FUJITSU vendor string comparison.
* DiscImageChef/Commands/MediaInfo.cs:
Added method to calculate MediaType from SCSI parameters
(mode, density, medium type, device type, etc).
Changed some error WriteLine() to debug ones. Too much
verbosity.
Added DVD media type decoding from PFI.
Found a drive that dumps ADIP, enabling it again (not
decoded).
* DiscImageChef/Commands/MediaScan.cs:
Added option to generate ImgBurn compatible log to
media-scan command.
* DiscImageChef/DiscImageChef.csproj:
Moved checksum generation to a separate class.
Added command to guess drive and media parameters and output
an XML report of them.
Added preliminary command to dump media. Only SCSI for now.
CDs and tapes are not supported. Errors are blalanty
ignored. Options are incomplete. Not yet usable.
* DiscImageChef/Main.cs:
Added command to guess drive and media parameters and output
an XML report of them.
Added preliminary command to dump media. Only SCSI for now.
CDs and tapes are not supported. Errors are blalanty
ignored. Options are incomplete. Not yet usable.
* DiscImageChef/Options.cs:
Added command to guess drive and media parameters and output
an XML report of them.
Added preliminary command to dump media. Only SCSI for now.
CDs and tapes are not supported. Errors are blalanty
ignored. Options are incomplete. Not yet usable.
Added option to generate ImgBurn compatible log to media-scan
command.
2016-01-31 08:05:56 +00:00
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2015-10-05 21:20:25 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release</OutputPath>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<ConsolePause>false</ConsolePause>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="Linux\Extern.cs" />
|
|
|
|
|
<Compile Include="Linux\Structs.cs" />
|
|
|
|
|
<Compile Include="Linux\Enums.cs" />
|
|
|
|
|
<Compile Include="Enums.cs" />
|
|
|
|
|
<Compile Include="Windows\Extern.cs" />
|
|
|
|
|
<Compile Include="Windows\Structs.cs" />
|
|
|
|
|
<Compile Include="Windows\Enums.cs" />
|
2015-10-12 06:25:49 +01:00
|
|
|
<Compile Include="Windows\Command.cs" />
|
|
|
|
|
<Compile Include="Linux\Command.cs" />
|
|
|
|
|
<Compile Include="Command.cs" />
|
2015-10-12 19:55:00 +01:00
|
|
|
<Compile Include="Device\Constructor.cs" />
|
|
|
|
|
<Compile Include="Device\Variables.cs" />
|
|
|
|
|
<Compile Include="Device\Destructor.cs" />
|
|
|
|
|
<Compile Include="Device\Commands.cs" />
|
2016-01-11 19:40:58 +00:00
|
|
|
<Compile Include="Device\ScsiCommands\MMC.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\SPC.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\SBC.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\Pioneer.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\Plextor.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\NEC.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\HL-DT-ST.cs" />
|
2016-01-13 03:47:25 +00:00
|
|
|
<Compile Include="Device\ScsiCommands\SSC.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\SMC.cs" />
|
2016-01-13 05:04:45 +00:00
|
|
|
<Compile Include="Device\ScsiCommands\Adaptec.cs" />
|
2016-01-13 05:57:35 +00:00
|
|
|
<Compile Include="Device\ScsiCommands\ArchiveCorp.cs" />
|
2016-01-13 19:59:44 +00:00
|
|
|
<Compile Include="Device\ScsiCommands\Certance.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\Fujitsu.cs" />
|
|
|
|
|
<Compile Include="Device\ScsiCommands\HP.cs" />
|
2016-01-14 02:46:36 +00:00
|
|
|
<Compile Include="Device\ScsiCommands\Plasmon.cs" />
|
2016-01-14 20:40:45 +00:00
|
|
|
<Compile Include="Device\ScsiCommands\SyQuest.cs" />
|
2016-02-07 20:11:41 +00:00
|
|
|
<Compile Include="Device\AtaCommands\AtaCHS.cs" />
|
|
|
|
|
<Compile Include="Device\AtaCommands\Atapi.cs" />
|
|
|
|
|
<Compile Include="Device\AtaCommands\Ata28.cs" />
|
|
|
|
|
<Compile Include="Device\AtaCommands\Ata48.cs" />
|
|
|
|
|
<Compile Include="Device\AtaCommands\Smart.cs" />
|
2016-02-08 00:13:49 +00:00
|
|
|
<Compile Include="Device\AtaCommands\Cfa.cs" />
|
|
|
|
|
<Compile Include="Device\AtaCommands\MCPT.cs" />
|
2016-04-13 16:28:50 +01:00
|
|
|
<Compile Include="FreeBSD\Command.cs" />
|
|
|
|
|
<Compile Include="FreeBSD\Enums.cs" />
|
|
|
|
|
<Compile Include="FreeBSD\Extern.cs" />
|
|
|
|
|
<Compile Include="FreeBSD\Structs.cs" />
|
2015-10-05 21:20:25 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Linux\" />
|
|
|
|
|
<Folder Include="Windows\" />
|
2015-10-12 19:55:00 +01:00
|
|
|
<Folder Include="Device\" />
|
2016-01-11 19:40:58 +00:00
|
|
|
<Folder Include="Device\ScsiCommands\" />
|
2016-02-07 20:08:06 +00:00
|
|
|
<Folder Include="Device\AtaCommands\" />
|
2016-04-13 16:28:50 +01:00
|
|
|
<Folder Include="FreeBSD\" />
|
2015-10-05 21:20:25 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ProjectExtensions>
|
|
|
|
|
<MonoDevelop>
|
|
|
|
|
<Properties>
|
|
|
|
|
<Policies>
|
|
|
|
|
<DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" />
|
2016-07-28 18:13:49 +01:00
|
|
|
<StandardHeader Text="/***************************************************************************
The Disc Image Chef
----------------------------------------------------------------------------
 
Filename : ${FileName}
Author(s) : ${AuthorName} <${AuthorEmail}>

Component : Component
 
--[ Description ] ----------------------------------------------------------
 
 Description
 
--[ License ] --------------------------------------------------------------
 
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as
 published by the Free Software Foundation; either version 2.1 of the
 License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, see <http://www.gnu.org/licenses/>.

----------------------------------------------------------------------------
Copyright © 2011-${Year} ${CopyrightHolder}
****************************************************************************/" IncludeInNewFiles="True" />
|
2016-07-28 23:08:22 +01:00
|
|
|
<TextStylePolicy FileWidth="120" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
|
|
|
|
|
<CSharpFormattingPolicy IndentSwitchSection="True" NewLinesForBracesInProperties="True" NewLinesForBracesInAccessors="True" NewLinesForBracesInAnonymousMethods="True" NewLinesForBracesInControlBlocks="True" NewLinesForBracesInAnonymousTypes="True" NewLinesForBracesInObjectCollectionArrayInitializers="True" NewLinesForBracesInLambdaExpressionBody="True" NewLineForElse="True" NewLineForCatch="True" NewLineForFinally="True" NewLineForMembersInObjectInit="True" NewLineForMembersInAnonymousTypes="True" NewLineForClausesInQuery="True" SpacingAfterMethodDeclarationName="False" SpaceAfterMethodCallName="False" SpaceAfterControlFlowStatementKeyword="False" SpaceBeforeOpenSquareBracket="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
|
2015-10-05 21:20:25 +01:00
|
|
|
</Policies>
|
|
|
|
|
</Properties>
|
|
|
|
|
</MonoDevelop>
|
|
|
|
|
</ProjectExtensions>
|
2015-10-12 06:25:49 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\DiscImageChef.Interop\DiscImageChef.Interop.csproj">
|
|
|
|
|
<Project>{9183F2E0-A879-4F23-9EE3-C6908F1332B2}</Project>
|
|
|
|
|
<Name>DiscImageChef.Interop</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-18 22:04:03 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Console\DiscImageChef.Console.csproj">
|
|
|
|
|
<Project>{CCAA7AFE-C094-4D82-A66D-630DE8A3F545}</Project>
|
|
|
|
|
<Name>DiscImageChef.Console</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-19 05:11:28 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Decoders\DiscImageChef.Decoders.csproj">
|
|
|
|
|
<Project>{0BEB3088-B634-4289-AE17-CDF2D25D00D5}</Project>
|
|
|
|
|
<Name>DiscImageChef.Decoders</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\DiscImageChef.Helpers\DiscImageChef.Helpers.csproj">
|
|
|
|
|
<Project>{F8BDF57B-1571-4CD0-84B3-B422088D359A}</Project>
|
|
|
|
|
<Name>DiscImageChef.Helpers</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-12 06:25:49 +01:00
|
|
|
</ItemGroup>
|
2016-07-28 18:13:49 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="..\LICENSE.LGPL">
|
|
|
|
|
<Link>LICENSE.LGPL</Link>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
2015-10-05 21:20:25 +01:00
|
|
|
</Project>
|