-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5821616
commit d50f5fa
Showing
11 changed files
with
124 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<Owners>SauceControl</Owners> | ||
<Authors>Clinton Ingram</Authors> | ||
<RepositoryUrl>https://github.com/saucecontrol/Blake2Fast</RepositoryUrl> | ||
<Copyright>Copyright © 2018-$([System.DateTime]::Today.Year) $(Authors)</Copyright> | ||
<Title>High-Performance BLAKE2 Hashing for .NET</Title> | ||
<Description>Optimized implementations of the BLAKE2b and BLAKE2s cryptographic hashing algorithms. Uses SSE2-SSE4.1 Hardware Intrinsics support on .NET Core 2.1+ and AVX2 on .NET Core 3+</Description> | ||
|
||
<RootNamespace>$(MSBuildProjectName)</RootNamespace> | ||
<AssemblyName>$(Owners).$(MSBuildProjectName)</AssemblyName> | ||
<AssemblyTitle>$(MSBuildProjectName)</AssemblyTitle> | ||
<Product>$(MSBuildProjectName)</Product> | ||
|
||
<PackageIcon>package/$(Owners).png</PackageIcon> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl> | ||
<PackageTags>BLAKE2 Hash BLAKE2b BLAKE2s SSE2 AVX2 SIMD HashAlgorithm HMAC Cryptography</PackageTags> | ||
<PackageReleaseNotes>See $(RepositoryUrl)/releases for release-specific notes.</PackageReleaseNotes> | ||
|
||
<LangVersion>8</LangVersion> | ||
<Features>strict</Features> | ||
<Nullable>annotations</Nullable> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
|
||
<Configurations>Debug;Release;Dist</Configurations> | ||
<Configuration Condition="'$(Configuration)'==''">Release</Configuration> | ||
|
||
<RepositoryRoot>$(MSBuildThisFileDirectory)..\</RepositoryRoot> | ||
<BaseIntermediateOutputPath>$(RepositoryRoot)out\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | ||
<BaseOutputPath>$(RepositoryRoot)out\bin\$(MSBuildProjectName)\</BaseOutputPath> | ||
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath> | ||
<OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath> | ||
<IntDir>$(IntermediateOutputPath)$(TargetFramework)\</IntDir> | ||
<OutDir>$(OutputPath)$(TargetFramework)\</OutDir> | ||
|
||
<AssemblyInfoFile>$(IntDir)_AssemblyInfo.cs</AssemblyInfoFile> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)$(Owners).snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'!='Debug'"> | ||
<Deterministic>true</Deterministic> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>portable</DebugType> | ||
<Optimize>true</Optimize> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(Configuration)'=='Dist' Or '$(Configuration)'=='Coverage'"> | ||
<None Include="$(MSBuildThisFileDirectory)$(Owners).png" Pack="true" PackagePath="package" /> | ||
<SourceRoot Include="$(RepositoryRoot)" /> | ||
</ItemGroup> | ||
|
||
</Project> |
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,30 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<Owners>SauceControl</Owners> | ||
<Authors>Clinton Ingram</Authors> | ||
<RepositoryUrl>https://github.com/saucecontrol/Blake2Fast</RepositoryUrl> | ||
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<Copyright>Copyright © 2018-$([System.DateTime]::Today.Year) $(Authors)</Copyright> | ||
<Title>High-Performance BLAKE2 Hashing for .NET</Title> | ||
<Description>Optimized implementations of the BLAKE2b and BLAKE2s cryptographic hashing algorithms. Uses SSE2-SSE4.1 Hardware Intrinsics support on .NET Core 2.1+ and AVX2 on .NET Core 3.0</Description> | ||
<PackageIcon>package/$(Owners).png</PackageIcon> | ||
<PackageTags>BLAKE2 Hash BLAKE2b BLAKE2s SSE2 AVX2 SIMD HashAlgorithm HMAC Cryptography</PackageTags> | ||
<PackageReleaseNotes>See $(RepositoryUrl)/releases for release-specific notes.</PackageReleaseNotes> | ||
|
||
<RootNamespace>$(MSBuildProjectName)</RootNamespace> | ||
<AssemblyName>$(Owners).$(MSBuildProjectName)</AssemblyName> | ||
<AssemblyTitle>$(MSBuildProjectName)</AssemblyTitle> | ||
<Product>$(MSBuildProjectName)</Product> | ||
<Import Project="$(MSBuildThisFileDirectory)..\build\Common.props" /> | ||
|
||
<Configurations>Debug;Release;Dist</Configurations> | ||
<LangVersion>8</LangVersion> | ||
<Features>strict</Features> | ||
<PropertyGroup> | ||
<Nullable>enable</Nullable> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)$(Owners).snk</AssemblyOriginatorKeyFile> | ||
|
||
<Configuration Condition="'$(Configuration)'==''">Release</Configuration> | ||
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\out\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | ||
<BaseOutputPath>$(MSBuildThisFileDirectory)..\out\bin\$(MSBuildProjectName)\</BaseOutputPath> | ||
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath> | ||
<OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath> | ||
<IntDir>$(IntermediateOutputPath)$(TargetFramework)\</IntDir> | ||
<OutDir>$(OutputPath)$(TargetFramework)\</OutDir> | ||
<AssemblyInfoFile>$(IntDir)_AssemblyInfo.cs</AssemblyInfoFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'!='Debug'"> | ||
<DebugType>portable</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
<Optimize>true</Optimize> | ||
<DocumentationFile>$(IntDir)$(AssemblyName).xml</DocumentationFile> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Dist'"> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<DeterministicSourcePaths>true</DeterministicSourcePaths> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(Configuration)'=='Dist'"> | ||
<None Include="$(MSBuildThisFileDirectory)$(Owners).png" Pack="true" PackagePath="package" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="all" /> | ||
<PackageReference Include="SauceControl.InheritDoc" Version="0.4.0" PrivateAssets="all" /> | ||
<PackageReference Include="SauceControl.InheritDoc" Version="1.0.0" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(Configuration)'=='Dist' or '$(Configuration)'=='Coverage'"> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,9 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<LangVersion>8</LangVersion> | ||
<Features>strict</Features> | ||
<Nullable>annotations</Nullable> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
|
||
<Configuration Condition="'$(Configuration)'==''">Release</Configuration> | ||
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\out\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | ||
<BaseOutputPath>$(MSBuildThisFileDirectory)..\out\bin\$(MSBuildProjectName)\</BaseOutputPath> | ||
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath> | ||
<OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath> | ||
<OutDir>$(OutputPath)$(TargetFramework)\</OutDir> | ||
<AssemblyInfoFile>$(IntermediateOutputPath)$(TargetFramework)\_AssemblyInfo.cs</AssemblyInfoFile> | ||
</PropertyGroup> | ||
<Import Project="$(MSBuildThisFileDirectory)..\build\Common.props" /> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> | ||
<DebugType>pdbonly</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
<PropertyGroup> | ||
<AssemblyName>$(MSBuildProjectName)</AssemblyName> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.