2011-03-03 18:34:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-08-04 15:11:36 +00:00
|
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2011-03-03 18:34:33 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
* FileSystemIDandChk/ArrayFill.cs:
* FileSystemIDandChk/FileSystemIDandChk.csproj:
Added array filling class from mykohsu.
* FileSystemIDandChk/Main.cs:
Print disk type as identified by image plugin
* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
Added more disk types
* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
Added link to Dave's document.
Completely implemented OpenImage() for standard
(non-compressed) teledisk images.
Implemented GetImageSize(), GetSectors(), GetSectorSize(),
ReadSectors(), GetImageVersion(),
GetImageApplicationVersion(), GetImageCreationTime(),
GetImageLastModificationtime(), GetImageName(),
GetDiskType(), data sector decoders.
* FileSystemIDandChk/TODO:
Discovered a filesystem specification present on ECMA-67.
Dunno if CP/M, FAT or a different one, must check.
Teledisk plugin is working, but lacks "advanced compression"
and variable sectors per track support.
2014-06-07 04:54:15 +01:00
|
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
2011-03-03 18:34:33 +00:00
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
<ProjectGuid>{7A4B05BE-73C9-4F34-87FE-E80CCF1F732D}</ProjectGuid>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2014-06-15 23:39:34 +01:00
|
|
|
<RootNamespace>DiscImageChef</RootNamespace>
|
|
|
|
|
<AssemblyName>DiscImageChef</AssemblyName>
|
2014-08-28 18:27:44 +01:00
|
|
|
<ReleaseVersion>2.2</ReleaseVersion>
|
2011-03-03 18:34:33 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
2012-08-03 01:45:38 +00:00
|
|
|
<DebugSymbols>True</DebugSymbols>
|
2011-03-03 18:34:33 +00:00
|
|
|
<DebugType>full</DebugType>
|
2012-08-03 01:45:38 +00:00
|
|
|
<Optimize>False</Optimize>
|
2011-03-03 18:34:33 +00:00
|
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2012-08-03 01:45:38 +00:00
|
|
|
<Externalconsole>True</Externalconsole>
|
2011-03-03 18:34:33 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
|
|
|
<DebugType>none</DebugType>
|
2015-11-10 06:16:23 +00:00
|
|
|
<Optimize>true</Optimize>
|
2011-03-03 18:34:33 +00:00
|
|
|
<OutputPath>bin\Release</OutputPath>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2012-08-03 01:45:38 +00:00
|
|
|
<Externalconsole>True</Externalconsole>
|
2011-03-03 18:34:33 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
2012-08-04 15:11:36 +00:00
|
|
|
<Reference Include="System.Core" />
|
2015-12-06 05:09:31 +00:00
|
|
|
<Reference Include="System.Xml" />
|
2011-03-03 18:34:33 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="Main.cs" />
|
|
|
|
|
<Compile Include="AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="Plugins.cs" />
|
2014-06-16 00:41:47 +01:00
|
|
|
<Compile Include="Options.cs" />
|
2014-06-16 01:45:04 +01:00
|
|
|
<Compile Include="Commands\Formats.cs" />
|
|
|
|
|
<Compile Include="Commands\Analyze.cs" />
|
|
|
|
|
<Compile Include="Commands\Compare.cs" />
|
|
|
|
|
<Compile Include="Commands\Checksum.cs" />
|
|
|
|
|
<Compile Include="Commands\Verify.cs" />
|
|
|
|
|
<Compile Include="Commands\Commands.cs" />
|
2014-08-28 19:27:16 +01:00
|
|
|
<Compile Include="Commands\PrintHex.cs" />
|
2014-09-01 03:44:39 +01:00
|
|
|
<Compile Include="Commands\Decode.cs" />
|
2015-05-19 06:04:21 +01:00
|
|
|
<Compile Include="Commands\Entropy.cs" />
|
2015-10-05 19:45:07 +01:00
|
|
|
<Compile Include="DetectImageFormat.cs" />
|
2015-10-13 01:45:07 +01:00
|
|
|
<Compile Include="Commands\DeviceInfo.cs" />
|
2015-11-23 21:44:58 +00:00
|
|
|
<Compile Include="Commands\MediaInfo.cs" />
|
2015-11-30 23:00:47 +00:00
|
|
|
<Compile Include="Commands\Benchmark.cs">
|
|
|
|
|
<Gettext-ScanForTranslations>False</Gettext-ScanForTranslations>
|
|
|
|
|
</Compile>
|
2015-12-06 05:09:31 +00:00
|
|
|
<Compile Include="Commands\CreateSidecar.cs" />
|
2015-12-30 11:45:27 +00:00
|
|
|
<Compile Include="Commands\MediaScan.cs" />
|
* 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
|
|
|
<Compile Include="Commands\DumpMedia.cs" />
|
|
|
|
|
<Compile Include="Core\Checksum.cs" />
|
|
|
|
|
<Compile Include="Commands\DeviceReport.cs" />
|
2011-03-03 18:34:33 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<ItemGroup>
|
2014-06-16 01:45:04 +01:00
|
|
|
<Folder Include="Commands\" />
|
* 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
|
|
|
<Folder Include="Core\" />
|
2011-03-03 18:34:33 +00:00
|
|
|
</ItemGroup>
|
2012-08-03 01:45:38 +00:00
|
|
|
<ProjectExtensions>
|
|
|
|
|
<MonoDevelop>
|
|
|
|
|
<Properties>
|
|
|
|
|
<Policies>
|
|
|
|
|
<VersionControlPolicy inheritsSet="Mono">
|
|
|
|
|
<CommitMessageStyle Indent=" " LastFilePostfix=":
 " IncludeDirectoryPaths="True" />
|
|
|
|
|
</VersionControlPolicy>
|
2014-04-14 01:14:20 +00:00
|
|
|
<ChangeLogPolicy UpdateMode="ProjectRoot" VcsIntegration="RequireEntry" inheritsSet="Mono">
|
2012-08-03 01:45:38 +00:00
|
|
|
<MessageStyle LastFilePostfix=":
 " IncludeDirectoryPaths="True" />
|
|
|
|
|
</ChangeLogPolicy>
|
2014-04-14 02:29:13 +00:00
|
|
|
<DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" />
|
|
|
|
|
<TextStylePolicy inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
|
|
|
|
|
<CSharpFormattingPolicy IndentSwitchBody="True" AnonymousMethodBraceStyle="NextLine" PropertyBraceStyle="NextLine" PropertyGetBraceStyle="NextLine" PropertySetBraceStyle="NextLine" EventBraceStyle="NextLine" EventAddBraceStyle="NextLine" EventRemoveBraceStyle="NextLine" StatementBraceStyle="NextLine" ElseNewLinePlacement="NewLine" CatchNewLinePlacement="NewLine" FinallyNewLinePlacement="NewLine" WhileNewLinePlacement="DoNotCare" ArrayInitializerWrapping="DoNotChange" ArrayInitializerBraceStyle="NextLine" BeforeMethodDeclarationParentheses="False" BeforeMethodCallParentheses="False" BeforeConstructorDeclarationParentheses="False" BeforeDelegateDeclarationParentheses="False" NewParentheses="False" SpacesBeforeBrackets="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
|
|
|
|
|
<TextStylePolicy inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
|
|
|
|
|
<NameConventionPolicy>
|
|
|
|
|
<Rules>
|
|
|
|
|
<NamingRule Name="Namespaces" AffectedEntity="Namespace" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Types" AffectedEntity="Class, Struct, Enum, Delegate" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Interfaces" AffectedEntity="Interface" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
|
|
|
|
|
<RequiredPrefixes>
|
|
|
|
|
<String>I</String>
|
|
|
|
|
</RequiredPrefixes>
|
|
|
|
|
</NamingRule>
|
|
|
|
|
<NamingRule Name="Attributes" AffectedEntity="CustomAttributes" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
|
|
|
|
|
<RequiredSuffixes>
|
|
|
|
|
<String>Attribute</String>
|
|
|
|
|
</RequiredSuffixes>
|
|
|
|
|
</NamingRule>
|
|
|
|
|
<NamingRule Name="Event Arguments" AffectedEntity="CustomEventArgs" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
|
|
|
|
|
<RequiredSuffixes>
|
|
|
|
|
<String>EventArgs</String>
|
|
|
|
|
</RequiredSuffixes>
|
|
|
|
|
</NamingRule>
|
|
|
|
|
<NamingRule Name="Exceptions" AffectedEntity="CustomExceptions" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
|
|
|
|
|
<RequiredSuffixes>
|
|
|
|
|
<String>Exception</String>
|
|
|
|
|
</RequiredSuffixes>
|
|
|
|
|
</NamingRule>
|
|
|
|
|
<NamingRule Name="Methods" AffectedEntity="Methods" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Static Readonly Fields" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="PascalCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Fields (Non Private)" AffectedEntity="Field" VisibilityMask="Internal, Protected, Public" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="ReadOnly Fields (Non Private)" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="False" />
|
|
|
|
|
<NamingRule Name="Fields (Private)" AffectedEntity="Field, ReadonlyField" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False">
|
|
|
|
|
<AllowedPrefixes>
|
|
|
|
|
<String>_</String>
|
|
|
|
|
<String>m_</String>
|
|
|
|
|
</AllowedPrefixes>
|
|
|
|
|
</NamingRule>
|
|
|
|
|
<NamingRule Name="Static Fields (Private)" AffectedEntity="Field" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="ReadOnly Fields (Private)" AffectedEntity="ReadonlyField" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False">
|
|
|
|
|
<AllowedPrefixes>
|
|
|
|
|
<String>_</String>
|
|
|
|
|
<String>m_</String>
|
|
|
|
|
</AllowedPrefixes>
|
|
|
|
|
</NamingRule>
|
|
|
|
|
<NamingRule Name="Constant Fields" AffectedEntity="ConstantField" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Properties" AffectedEntity="Property" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Events" AffectedEntity="Event" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Enum Members" AffectedEntity="EnumMember" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Parameters" AffectedEntity="Parameter" VisibilityMask="VisibilityMask" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
|
|
|
|
|
<NamingRule Name="Type Parameters" AffectedEntity="TypeParameter" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
|
|
|
|
|
<RequiredPrefixes>
|
|
|
|
|
<String>T</String>
|
|
|
|
|
</RequiredPrefixes>
|
|
|
|
|
</NamingRule>
|
|
|
|
|
</Rules>
|
|
|
|
|
</NameConventionPolicy>
|
2012-08-03 01:45:38 +00:00
|
|
|
</Policies>
|
|
|
|
|
</Properties>
|
|
|
|
|
</MonoDevelop>
|
|
|
|
|
</ProjectExtensions>
|
2014-04-17 21:11:36 +00:00
|
|
|
<ItemGroup>
|
2014-07-09 19:51:07 +01:00
|
|
|
<None Include="..\TODO">
|
|
|
|
|
<Link>TODO</Link>
|
|
|
|
|
</None>
|
|
|
|
|
<None Include="..\README.md">
|
|
|
|
|
<Link>README.md</Link>
|
|
|
|
|
</None>
|
|
|
|
|
<None Include="..\LICENSE">
|
|
|
|
|
<Link>LICENSE</Link>
|
|
|
|
|
</None>
|
2015-10-24 01:10:04 +01:00
|
|
|
<None Include="..\.travis.yml">
|
|
|
|
|
<Link>.travis.yml</Link>
|
|
|
|
|
</None>
|
2014-04-17 21:11:36 +00:00
|
|
|
</ItemGroup>
|
2014-06-15 23:49:26 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\commandline\src\libcmdline\CommandLine35.csproj">
|
|
|
|
|
<Project>{5DEA2811-2FFA-4959-830B-CAD3ACACABEB}</Project>
|
|
|
|
|
<Name>CommandLine35</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-05 18:58:13 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Checksums\DiscImageChef.Checksums.csproj">
|
|
|
|
|
<Project>{CC48B324-A532-4A45-87A6-6F91F7141E8D}</Project>
|
|
|
|
|
<Name>DiscImageChef.Checksums</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\DiscImageChef.Helpers\DiscImageChef.Helpers.csproj">
|
|
|
|
|
<Project>{F8BDF57B-1571-4CD0-84B3-B422088D359A}</Project>
|
|
|
|
|
<Name>DiscImageChef.Helpers</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-05 19:45:07 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.DiscImages\DiscImageChef.DiscImages.csproj">
|
|
|
|
|
<Project>{74032CBC-339B-42F3-AF6F-E96C261F3E6A}</Project>
|
|
|
|
|
<Name>DiscImageChef.DiscImages</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\DiscImageChef.CommonTypes\DiscImageChef.CommonTypes.csproj">
|
|
|
|
|
<Project>{F2B84194-26EB-4227-B1C5-6602517E85AE}</Project>
|
|
|
|
|
<Name>DiscImageChef.CommonTypes</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-05 19:58:42 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Partitions\DiscImageChef.Partitions.csproj">
|
|
|
|
|
<Project>{DA7AB65D-B5BA-4003-8893-A51BB071BA2F}</Project>
|
|
|
|
|
<Name>DiscImageChef.Partitions</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-05 20:04:05 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Filesystems\DiscImageChef.Filesystems.csproj">
|
|
|
|
|
<Project>{D7016DF2-5A5E-4524-B40D-BA2D59576688}</Project>
|
|
|
|
|
<Name>DiscImageChef.Filesystems</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-05 20:27:44 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Decoders\DiscImageChef.Decoders.csproj">
|
|
|
|
|
<Project>{0BEB3088-B634-4289-AE17-CDF2D25D00D5}</Project>
|
|
|
|
|
<Name>DiscImageChef.Decoders</Name>
|
|
|
|
|
</ProjectReference>
|
2015-10-13 01:45:07 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Devices\DiscImageChef.Devices.csproj">
|
|
|
|
|
<Project>{57BB2341-AB62-48FD-91B8-46F5A2F9ED51}</Project>
|
|
|
|
|
<Name>DiscImageChef.Devices</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<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-12-06 05:09:31 +00:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Metadata\DiscImageChef.Metadata.csproj">
|
|
|
|
|
<Project>{9F213318-5CB8-4066-A757-074489C9F818}</Project>
|
|
|
|
|
<Name>DiscImageChef.Metadata</Name>
|
|
|
|
|
</ProjectReference>
|
2014-06-15 23:49:26 +01:00
|
|
|
</ItemGroup>
|
2011-03-03 18:34:33 +00:00
|
|
|
</Project>
|