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" />
|
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 22:28:42 +00:00
|
|
|
<Compile Include="Commands\Benchmark.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\" />
|
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>
|
2014-06-15 23:49:26 +01:00
|
|
|
</ItemGroup>
|
2011-03-03 18:34:33 +00:00
|
|
|
</Project>
|