2018-02-03 17:01:17 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-04-11 08:13:49 +01:00
<Project Sdk= "Microsoft.NET.Sdk" >
2015-10-05 18:58:13 +01:00
<PropertyGroup >
<Configuration Condition= " '$(Configuration)' == '' " > Debug</Configuration>
<Platform Condition= " '$(Platform)' == '' " > AnyCPU</Platform>
<SchemaVersion > 2.0</SchemaVersion>
<ProjectGuid > {CC48B324-A532-4A45-87A6-6F91F7141E8D}</ProjectGuid>
<OutputType > Library</OutputType>
2020-02-27 00:33:23 +00:00
<RootNamespace > Aaru.Checksums</RootNamespace>
2020-02-26 19:24:04 +00:00
<AssemblyName > Aaru.Checksums</AssemblyName>
2022-02-15 11:03:06 +00:00
<ReleaseVersion > $(Version)</ReleaseVersion>
2018-04-11 08:13:49 +01:00
<EnableDefaultCompileItems > false</EnableDefaultCompileItems>
2018-04-11 22:56:48 +01:00
<GenerateAssemblyInfo > true</GenerateAssemblyInfo>
2021-12-08 21:48:35 +00:00
<Version > 6.0.0-alpha8</Version>
2018-04-11 22:56:48 +01:00
<Company > Claunia.com</Company>
2022-02-18 10:02:36 +00:00
<Copyright > Copyright © 2011-2022 Natalia Portillo</Copyright>
2020-02-27 11:27:50 +00:00
<Product > Aaru Data Preservation Suite</Product>
2020-02-27 00:39:31 +00:00
<Title > Aaru.Checksums</Title>
2018-04-11 22:56:48 +01:00
<ApplicationVersion > $(Version)</ApplicationVersion>
2021-09-12 22:25:59 +01:00
<TargetFramework > net6</TargetFramework>
<LangVersion > 10</LangVersion>
2020-12-20 22:59:30 +00:00
<Description > C# implementation of CRC16, CRC32, CRC64, Fletcher, MD5, SHA1, SHA2 and SpamSum.</Description>
<PackageProjectUrl > https://github.com/aaru-dps/</PackageProjectUrl>
<PackageLicenseExpression > LGPL-2.1-only</PackageLicenseExpression>
<RepositoryUrl > https://github.com/aaru-dps/Aaru.Checksums</RepositoryUrl>
<GeneratePackageOnBuild > true</GeneratePackageOnBuild>
<NeutralLanguage > en-US</NeutralLanguage>
<GenerateDocumentationFile > true</GenerateDocumentationFile>
<IncludeSymbols > true</IncludeSymbols>
<SymbolPackageFormat > snupkg</SymbolPackageFormat>
<Authors > Natalia Portillo < claunia@claunia.com> </Authors>
2021-09-12 22:25:59 +01:00
<DisableImplicitNamespaceImports > true</DisableImplicitNamespaceImports>
2015-10-05 18:58:13 +01:00
</PropertyGroup>
2018-04-12 00:20:29 +01:00
<PropertyGroup >
2020-12-20 22:59:30 +00:00
<NrtRevisionFormat > $(Version)+{chash:8}</NrtRevisionFormat>
2018-04-12 00:20:29 +01:00
<NrtResolveSimpleAttributes > true</NrtResolveSimpleAttributes>
<NrtShowRevision > true</NrtShowRevision>
</PropertyGroup>
2015-10-05 18:58:13 +01:00
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
<DebugSymbols > true</DebugSymbols>
<DebugType > full</DebugType>
<Optimize > false</Optimize>
2022-02-15 10:18:15 +00:00
<OutputPath > bin\Debug\net6</OutputPath>
2015-10-05 18:58:13 +01:00
<DefineConstants > DEBUG;</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<ConsolePause > false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
<DebugType > full</DebugType>
<Optimize > true</Optimize>
2022-02-15 10:18:15 +00:00
<OutputPath > bin\Release\net6</OutputPath>
2015-10-05 18:58:13 +01:00
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<ConsolePause > false</ConsolePause>
</PropertyGroup>
<ItemGroup >
2021-09-29 01:22:38 +01:00
<Compile Include= "Adler32\neon.cs" />
2021-09-28 22:38:04 +01:00
<Compile Include= "Adler32\ssse3.cs" />
2021-09-26 23:13:43 +01:00
<Compile Include= "CRC16CCITTContext.cs" />
<Compile Include= "CRC16IBMContext.cs" />
2021-09-29 02:52:40 +01:00
<Compile Include= "CRC32\arm_simd.cs" />
2021-09-26 23:13:43 +01:00
<Compile Include= "CRC32\clmul.cs" />
2021-09-27 02:25:25 +01:00
<Compile Include= "CRC64\clmul.cs" />
2021-10-14 01:38:59 +01:00
<Compile Include= "Native.cs" />
2021-09-26 23:13:43 +01:00
<Compile Include= "Register.cs" />
<Compile Include= "SpamSumContext.cs" />
<Compile Include= "Adler32Context.cs" />
<Compile Include= "CDChecksums.cs" />
<Compile Include= "CRC16Context.cs" />
<Compile Include= "CRC32Context.cs" />
<Compile Include= "CRC64Context.cs" />
<Compile Include= "FletcherContext.cs" />
<Compile Include= "MD5Context.cs" />
<Compile Include= "ReedSolomon.cs" />
<Compile Include= "SHA1Context.cs" />
<Compile Include= "SHA256Context.cs" />
<Compile Include= "SHA384Context.cs" />
<Compile Include= "SHA512Context.cs" />
2015-10-05 18:58:13 +01:00
</ItemGroup>
<ItemGroup >
2021-09-26 23:13:43 +01:00
<ProjectReference Include= "..\Aaru.CommonTypes\Aaru.CommonTypes.csproj" />
2020-02-26 19:19:25 +00:00
<ProjectReference Include= "..\Aaru.Helpers\Aaru.Helpers.csproj" >
2015-10-05 18:58:13 +01:00
</ProjectReference>
2020-02-26 19:19:25 +00:00
<ProjectReference Include= "..\Aaru.Console\Aaru.Console.csproj" >
2015-10-18 22:04:03 +01:00
</ProjectReference>
2015-10-05 18:58:13 +01:00
</ItemGroup>
2016-07-28 18:13:49 +01:00
<ItemGroup >
<EmbeddedResource Include= "..\LICENSE.LGPL" >
<Link > LICENSE.LGPL</Link>
</EmbeddedResource>
<EmbeddedResource Include= "..\LICENSE" >
<Link > LICENSE</Link>
</EmbeddedResource>
</ItemGroup>
2018-04-12 00:20:29 +01:00
<ItemGroup >
2021-10-14 01:38:59 +01:00
<PackageReference Include= "Aaru.Checksums.Native" Version= "6.0.0-alpha6" />
2022-02-15 10:18:15 +00:00
<PackageReference Include= "Unclassified.NetRevisionTask" Version= "0.4.2" PrivateAssets= "all" />
2018-04-12 00:20:29 +01:00
</ItemGroup>
2016-07-28 18:13:49 +01:00
<ProjectExtensions >
<MonoDevelop >
<Properties >
<Policies >
2021-09-26 23:13:43 +01:00
<StandardHeader IncludeInNewFiles= "True" Text= "/***************************************************************************
Aaru Data Preservation Suite
----------------------------------------------------------------------------
 
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}
****************************************************************************/" />
<TextStylePolicy FileWidth= "120" TabWidth= "4" IndentWidth= "4" RemoveTrailingWhitespace= "True" NoTabsAfterNonTabs= "False" EolMarker= "Native" TabsToSpaces= "True" scope= "text/x-csharp" />
2022-02-15 10:18:15 +00: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" 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" SpaceAfterControlFlowStatementKeyword= "False" scope= "text/x-csharp" />
2016-07-28 18:13:49 +01:00
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
2021-08-17 21:23:22 +01:00
<PropertyGroup Condition= "$(TargetFramework.StartsWith('net4')) and '$(OS)' == 'Unix'" >
<!-- When compiling .NET SDK 2.0 projects targeting .NET 4.x on Mono using 'dotnet build' you -->
<!-- have to teach MSBuild where the Mono copy of the reference asssemblies is -->
<!-- Look in the standard install locations -->
<BaseFrameworkPathOverrideForMono Condition= "'$(BaseFrameworkPathOverrideForMono)' == '' AND EXISTS('/Library/Frameworks/Mono.framework/Versions/Current/lib/mono')" > /Library/Frameworks/Mono.framework/Versions/Current/lib/mono</BaseFrameworkPathOverrideForMono>
<BaseFrameworkPathOverrideForMono Condition= "'$(BaseFrameworkPathOverrideForMono)' == '' AND EXISTS('/usr/lib/mono')" > /usr/lib/mono</BaseFrameworkPathOverrideForMono>
<BaseFrameworkPathOverrideForMono Condition= "'$(BaseFrameworkPathOverrideForMono)' == '' AND EXISTS('/usr/local/lib/mono')" > /usr/local/lib/mono</BaseFrameworkPathOverrideForMono>
<!-- If we found Mono reference assemblies, then use them -->
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net40'" > $(BaseFrameworkPathOverrideForMono)/4.0-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net45'" > $(BaseFrameworkPathOverrideForMono)/4.5-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net451'" > $(BaseFrameworkPathOverrideForMono)/4.5.1-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net452'" > $(BaseFrameworkPathOverrideForMono)/4.5.2-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net46'" > $(BaseFrameworkPathOverrideForMono)/4.6-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net461'" > $(BaseFrameworkPathOverrideForMono)/4.6.1-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net462'" > $(BaseFrameworkPathOverrideForMono)/4.6.2-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net47'" > $(BaseFrameworkPathOverrideForMono)/4.7-api</FrameworkPathOverride>
<FrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != '' AND '$(TargetFramework)' == 'net471'" > $(BaseFrameworkPathOverrideForMono)/4.7.1-api</FrameworkPathOverride>
<EnableFrameworkPathOverride Condition= "'$(BaseFrameworkPathOverrideForMono)' != ''" > true</EnableFrameworkPathOverride>
<!-- Add the Facades directory. Not sure how else to do this. Necessary at least for .NET 4.5 -->
<AssemblySearchPaths Condition= "'$(BaseFrameworkPathOverrideForMono)' != ''" > $(FrameworkPathOverride)/Facades;$(AssemblySearchPaths)</AssemblySearchPaths>
</PropertyGroup>
2015-10-05 18:58:13 +01:00
</Project>