Update docs

This commit is contained in:
Oleksandr Melnyk 2022-06-03 15:39:40 +03:00
parent c079a400a0
commit eb062407b5
4 changed files with 11 additions and 12 deletions

View File

@ -1,3 +1,6 @@
# 2022-06-03
- Added xxHash128
- Migrated to net6
# 2019-02-16 # 2019-02-16
- Migrated to net core v.3.1 - Migrated to net core v.3.1
- Added bit operation utils - Added bit operation utils

View File

@ -6,7 +6,7 @@ before_build:
- choco install opencover.portable - choco install opencover.portable
- choco install codecov - choco install codecov
image: Visual Studio 2019 image: Visual Studio 2022
install: install:
- ps: $env:DOTNET_BUILD_VERSION = $env:APPVEYOR_BUILD_NUMBER - ps: $env:DOTNET_BUILD_VERSION = $env:APPVEYOR_BUILD_NUMBER
@ -24,6 +24,6 @@ test_script:
deploy: deploy:
provider: NuGet provider: NuGet
api_key: api_key:
secure: Gqt0hcrPJjXnwbp002k7UPsb+3IoUWxKc5qcNyQrFrv1WyjCB1Y0J/cB0P27LWIK secure: +1hDCHt3w+fajHIw+ChIh5EP2RVdn8Gn6wgqe5jO/ZhWDE0KN2dTaS+EEOIJ67hn
skip_symbols: true skip_symbols: true
artifact: /.*\.nupkg/ artifact: /.*\.nupkg/

View File

@ -1,13 +1,9 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<SystemBuffers>4.5.0</SystemBuffers> <BenchmarkDotNet>0.13.1</BenchmarkDotNet>
<SystemIO>4.3.0</SystemIO> <MicrosoftSdk>17.2.0</MicrosoftSdk>
<SystemMemory>4.5.3</SystemMemory>
<SystemTasks>4.5.3</SystemTasks>
<BenchmarkDotNet>0.12</BenchmarkDotNet>
<MicrosoftSdk>16.5.0</MicrosoftSdk>
<xUnit>2.4.1</xUnit> <xUnit>2.4.1</xUnit>
<xUnitRunner>2.4.1</xUnitRunner> <xUnitRunner>2.4.5</xUnitRunner>
<xUnitTool>2.3.1</xUnitTool> <xUnitTool>2.3.1</xUnitTool>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -1,12 +1,12 @@
<Project> <Project>
<Import Project="deps.props" /> <Import Project="deps.props" />
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks> <TargetFrameworks>net6.0</TargetFrameworks>
<PackageId>Standart.Hash.xxHash</PackageId> <PackageId>Standart.Hash.xxHash</PackageId>
<VersionPrefix>3.1.0</VersionPrefix> <VersionPrefix>4.0.0</VersionPrefix>
<AssemblyName>Standart.Hash.xxHash</AssemblyName> <AssemblyName>Standart.Hash.xxHash</AssemblyName>
<AssemblyTitle>Standart.Hash.xxHash</AssemblyTitle> <AssemblyTitle>Standart.Hash.xxHash</AssemblyTitle>
<Authors>Alexander Melnik</Authors> <Authors>Oleksandr Melnyk</Authors>
<PackageTags>hash;xxHash</PackageTags> <PackageTags>hash;xxHash</PackageTags>
<Description>Standart.Hash.xxHash</Description> <Description>Standart.Hash.xxHash</Description>
<PackageProjectUrl>https://github.com/uranium62/xxHash</PackageProjectUrl> <PackageProjectUrl>https://github.com/uranium62/xxHash</PackageProjectUrl>