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>
|
2011-03-03 18:34:33 +00:00
|
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
2014-06-07 05:57:17 +01:00
|
|
|
<ReleaseVersion>1.10</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>
|
2012-08-03 01:45:38 +00:00
|
|
|
<Optimize>False</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\AppleMFS.cs" />
|
|
|
|
|
<Compile Include="Swapping.cs" />
|
|
|
|
|
<Compile Include="Plugins\Plugin.cs" />
|
|
|
|
|
<Compile Include="Plugins.cs" />
|
|
|
|
|
<Compile Include="Plugins\ISO9660.cs" />
|
|
|
|
|
<Compile Include="Plugins\PCEngine.cs" />
|
|
|
|
|
<Compile Include="Plugins\Opera.cs" />
|
|
|
|
|
<Compile Include="Plugins\AppleHFS.cs" />
|
|
|
|
|
<Compile Include="Plugins\FAT.cs" />
|
|
|
|
|
<Compile Include="PartPlugins\PartPlugin.cs" />
|
|
|
|
|
<Compile Include="PartPlugins\AppleMap.cs" />
|
2011-03-06 00:25:11 +00:00
|
|
|
<Compile Include="Plugins\FFS.cs" />
|
|
|
|
|
<Compile Include="Plugins\AppleHFSPlus.cs" />
|
2011-03-25 10:39:11 +00:00
|
|
|
<Compile Include="PartPlugins\MBR.cs" />
|
2011-03-25 20:45:28 +00:00
|
|
|
<Compile Include="PartPlugins\NeXT.cs" />
|
2011-03-28 13:46:30 +00:00
|
|
|
<Compile Include="Plugins\BFS.cs" />
|
2011-03-28 22:56:20 +00:00
|
|
|
<Compile Include="Plugins\HPFS.cs" />
|
2011-03-29 02:56:27 +00:00
|
|
|
<Compile Include="Plugins\NTFS.cs" />
|
2011-06-02 19:34:47 +00:00
|
|
|
<Compile Include="Plugins\ODS.cs" />
|
2012-08-03 01:45:38 +00:00
|
|
|
<Compile Include="Plugins\Symbian.cs" />
|
|
|
|
|
<Compile Include="Plugins\extFS.cs" />
|
|
|
|
|
<Compile Include="Plugins\ext2FS.cs" />
|
|
|
|
|
<Compile Include="DateHandlers.cs" />
|
2012-08-04 15:11:36 +00:00
|
|
|
<Compile Include="EndianAwareBinaryReader.cs" />
|
2012-08-04 18:20:03 +00:00
|
|
|
<Compile Include="StringHandlers.cs" />
|
2012-08-05 18:13:48 +00:00
|
|
|
<Compile Include="Plugins\MinixFS.cs" />
|
2012-08-06 20:51:28 +00:00
|
|
|
<Compile Include="Plugins\SolarFS.cs" />
|
2012-08-06 21:21:14 +00:00
|
|
|
<Compile Include="Plugins\UNIXBFS.cs" />
|
2012-08-07 06:20:13 +00:00
|
|
|
<Compile Include="Plugins\SysV.cs" />
|
2013-12-14 20:35:03 +00:00
|
|
|
<Compile Include="ImagePlugins\ImagePlugin.cs" />
|
2013-12-14 23:02:04 +00:00
|
|
|
<Compile Include="ImagePlugins\CDRWin.cs" />
|
2014-04-14 01:14:20 +00:00
|
|
|
<Compile Include="BigEndianBitConverter.cs" />
|
2014-04-15 21:04:04 +00:00
|
|
|
<Compile Include="ImagePlugins\DiskCopy42.cs" />
|
2014-04-17 03:45:02 +00:00
|
|
|
<Compile Include="Plugins\LisaFS.cs" />
|
2014-04-19 21:21:08 +01:00
|
|
|
<Compile Include="ImagePlugins\TeleDisk.cs" />
|
* 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
|
|
|
<Compile Include="ArrayFill.cs" />
|
2014-06-07 17:21:40 +01:00
|
|
|
<Compile Include="PrintHex.cs" />
|
2014-06-07 23:32:59 +01:00
|
|
|
<Compile Include="ImagePlugins\ZZZRawImage.cs" />
|
2011-03-03 18:34:33 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Plugins\" />
|
|
|
|
|
<Folder Include="PartPlugins\" />
|
2013-12-14 20:35:03 +00:00
|
|
|
<Folder Include="ImagePlugins\" />
|
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>
|
|
|
|
|
<None Include="TODO" />
|
|
|
|
|
<None Include="LICENSE" />
|
|
|
|
|
<None Include="README.md" />
|
|
|
|
|
</ItemGroup>
|
2011-03-03 18:34:33 +00:00
|
|
|
</Project>
|