2017-06-29 21:23:39 +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>{B2ABC1F2-C365-4515-9F23-A5725050CC48}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<RootNamespace>DiscImageChef.Tests</RootNamespace>
|
|
|
|
|
<AssemblyName>DiscImageChef.Tests</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
2017-06-29 22:09:41 +01:00
|
|
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
2017-06-29 21:23:39 +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>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release</OutputPath>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
2017-06-29 22:09:41 +01:00
|
|
|
<Reference Include="nunit.framework">
|
|
|
|
|
<HintPath>..\packages\NUnit.3.7.1\lib\net45\nunit.framework.dll</HintPath>
|
|
|
|
|
</Reference>
|
2017-06-29 21:23:39 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-06-29 22:09:41 +01:00
|
|
|
<Compile Include="Consts.cs" />
|
|
|
|
|
<Compile Include="Checksums\CRC16.cs" />
|
|
|
|
|
<Compile Include="Checksums\SHA384.cs" />
|
|
|
|
|
<Compile Include="Checksums\SHA256.cs" />
|
|
|
|
|
<Compile Include="Checksums\CRC32.cs" />
|
|
|
|
|
<Compile Include="Checksums\CRC64.cs" />
|
|
|
|
|
<Compile Include="Checksums\MD5.cs" />
|
|
|
|
|
<Compile Include="Checksums\RIPEMD160.cs" />
|
|
|
|
|
<Compile Include="Checksums\SHA1.cs" />
|
|
|
|
|
<Compile Include="Checksums\SpamSum.cs" />
|
|
|
|
|
<Compile Include="Checksums\SHA512.cs" />
|
|
|
|
|
<Compile Include="Checksums\Adler32.cs" />
|
2017-06-29 22:52:46 +01:00
|
|
|
<Compile Include="Filters\GZip.cs" />
|
|
|
|
|
<Compile Include="Filters\XZ.cs" />
|
|
|
|
|
<Compile Include="Filters\LZip.cs" />
|
|
|
|
|
<Compile Include="Filters\BZip2.cs" />
|
2017-06-29 23:41:14 +01:00
|
|
|
<Compile Include="Filters\PCExchange.cs" />
|
2017-06-30 00:34:46 +01:00
|
|
|
<Compile Include="Filters\AppleDoubleOsX.cs" />
|
|
|
|
|
<Compile Include="Filters\AppleDoubleUnix.cs" />
|
|
|
|
|
<Compile Include="Filters\AppleDoubleProDos.cs" />
|
|
|
|
|
<Compile Include="Filters\AppleDoubleDave.cs" />
|
|
|
|
|
<Compile Include="Filters\AppleDoubleNetatalk.cs" />
|
|
|
|
|
<Compile Include="Filters\AppleDoubleDos.cs" />
|
|
|
|
|
<Compile Include="Filters\AppleDoubleUnAr.cs" />
|
|
|
|
|
<Compile Include="Filters\AppleSingle.cs" />
|
|
|
|
|
<Compile Include="Filters\MacBinary1.cs" />
|
|
|
|
|
<Compile Include="Filters\MacBinary3.cs" />
|
|
|
|
|
<Compile Include="Filters\MacBinary2.cs" />
|
2017-07-01 03:40:06 +01:00
|
|
|
<Compile Include="Filesystems\ADFS.cs" />
|
2017-07-01 09:39:20 +01:00
|
|
|
<Compile Include="Filesystems\FAT12.cs" />
|
2017-07-01 22:57:55 +01:00
|
|
|
<Compile Include="Filesystems\FAT12_MBR.cs" />
|
|
|
|
|
<Compile Include="Filesystems\FAT16_MBR.cs" />
|
|
|
|
|
<Compile Include="Filesystems\FAT32_MBR.cs" />
|
2017-06-29 22:09:41 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="packages.config" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Checksums\" />
|
2017-06-29 22:52:46 +01:00
|
|
|
<Folder Include="Filters\" />
|
2017-07-01 03:40:06 +01:00
|
|
|
<Folder Include="Filesystems\" />
|
2017-06-29 22:09:41 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\DiscImageChef.Checksums\DiscImageChef.Checksums.csproj">
|
|
|
|
|
<Project>{CC48B324-A532-4A45-87A6-6F91F7141E8D}</Project>
|
|
|
|
|
<Name>DiscImageChef.Checksums</Name>
|
|
|
|
|
</ProjectReference>
|
2017-06-29 22:52:46 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Filters\DiscImageChef.Filters.csproj">
|
|
|
|
|
<Project>{D571B8EF-903D-4353-BDD5-B834F9F029EF}</Project>
|
|
|
|
|
<Name>DiscImageChef.Filters</Name>
|
|
|
|
|
</ProjectReference>
|
2017-07-01 03:40:06 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.DiscImages\DiscImageChef.DiscImages.csproj">
|
|
|
|
|
<Project>{74032CBC-339B-42F3-AF6F-E96C261F3E6A}</Project>
|
|
|
|
|
<Name>DiscImageChef.DiscImages</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\DiscImageChef.Filesystems\DiscImageChef.Filesystems.csproj">
|
|
|
|
|
<Project>{D7016DF2-5A5E-4524-B40D-BA2D59576688}</Project>
|
|
|
|
|
<Name>DiscImageChef.Filesystems</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\DiscImageChef.CommonTypes\DiscImageChef.CommonTypes.csproj">
|
|
|
|
|
<Project>{F2B84194-26EB-4227-B1C5-6602517E85AE}</Project>
|
|
|
|
|
<Name>DiscImageChef.CommonTypes</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\DiscImageChef.Metadata\DiscImageChef.Metadata.csproj">
|
|
|
|
|
<Project>{9F213318-5CB8-4066-A757-074489C9F818}</Project>
|
|
|
|
|
<Name>DiscImageChef.Metadata</Name>
|
|
|
|
|
</ProjectReference>
|
2017-07-01 22:57:55 +01:00
|
|
|
<ProjectReference Include="..\DiscImageChef.Partitions\DiscImageChef.Partitions.csproj">
|
|
|
|
|
<Project>{DA7AB65D-B5BA-4003-8893-A51BB071BA2F}</Project>
|
|
|
|
|
<Name>DiscImageChef.Partitions</Name>
|
|
|
|
|
</ProjectReference>
|
2017-06-29 21:23:39 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
2017-06-29 22:09:41 +01:00
|
|
|
<ProjectExtensions>
|
|
|
|
|
<MonoDevelop>
|
|
|
|
|
<Properties>
|
|
|
|
|
<Policies>
|
|
|
|
|
<TextStylePolicy FileWidth="120" TabWidth="4" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" EolMarker="Native" TabsToSpaces="True" scope="text/x-csharp">
|
|
|
|
|
<inheritsSet />
|
|
|
|
|
<inheritsScope />
|
|
|
|
|
</TextStylePolicy>
|
2017-07-01 22:57:55 +01:00
|
|
|
<CSharpFormattingPolicy IndentBlock="True" IndentBraces="False" IndentSwitchSection="True" IndentSwitchCaseSection="True" LabelPositioning="OneLess" NewLinesForBracesInTypes="True" NewLinesForBracesInMethods="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" SpaceWithinMethodDeclarationParenthesis="False" SpaceBetweenEmptyMethodDeclarationParentheses="False" SpaceAfterMethodCallName="False" SpaceWithinMethodCallParentheses="False" SpaceBetweenEmptyMethodCallParentheses="False" SpaceAfterControlFlowStatementKeyword="False" SpaceWithinExpressionParentheses="False" SpaceWithinCastParentheses="False" SpaceWithinOtherParentheses="False" SpaceAfterCast="False" SpacesIgnoreAroundVariableDeclaration="False" SpaceBeforeOpenSquareBracket="False" SpaceBetweenEmptySquareBrackets="False" SpaceWithinSquareBrackets="False" SpaceAfterColonInBaseTypeDeclaration="True" SpaceAfterComma="True" SpaceAfterDot="False" SpaceAfterSemicolonsInForStatement="True" SpaceBeforeColonInBaseTypeDeclaration="True" SpaceBeforeComma="False" SpaceBeforeDot="False" SpaceBeforeSemicolonsInForStatement="False" SpacingAroundBinaryOperator="Single" WrappingPreserveSingleLine="True" WrappingKeepStatementsOnSingleLine="True" PlaceSystemDirectiveFirst="True" scope="text/x-csharp">
|
2017-06-29 22:09:41 +01:00
|
|
|
<inheritsSet />
|
|
|
|
|
<inheritsScope />
|
|
|
|
|
</CSharpFormattingPolicy>
|
|
|
|
|
<DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild">
|
|
|
|
|
<inheritsSet />
|
|
|
|
|
<inheritsScope />
|
|
|
|
|
</DotNetNamingPolicy>
|
|
|
|
|
</Policies>
|
|
|
|
|
</Properties>
|
|
|
|
|
</MonoDevelop>
|
|
|
|
|
</ProjectExtensions>
|
2017-06-29 21:23:39 +01:00
|
|
|
</Project>
|