Skip to content

Commit

Permalink
chore: bump to 0.1.0
Browse files Browse the repository at this point in the history
* support net5.0
  • Loading branch information
vla committed Nov 17, 2020
1 parent de53bf6 commit f028b73
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 20 deletions.
17 changes: 10 additions & 7 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,24 @@

<PropertyGroup>
<Version>$(Ver)</Version>
<PackageVersion>$(Ver)</PackageVersion>
<PackageVersion>$(Ver)</PackageVersion>
<Copyright>2019 v.la, Inc.</Copyright>
<Authors>[email protected]</Authors>
<Description>Library Bloom filters in C# with optional Redis-backing</Description>
<Product>Bloom filters</Product>

<PackageOutputPath>$(MSBuildThisFileDirectory)/artifacts</PackageOutputPath>
<PackageTags>Common Lib;Framework</PackageTags>
<LangVersion>latest</LangVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<!-- <PackageIcon>icon.png</PackageIcon> -->
<PackageIconUrl>http://s.gravatar.com/avatar/28dfa5190889f7190e74b683fc30b827?s=80</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/vla/BloomFilter.NetCore</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageLicenseType>MIT</PackageLicenseType>

<RepositoryUrl>git://github.com/vla/BloomFilter.NetCore</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>master</RepositoryBranch>
<RepositoryBranch>master</RepositoryBranch>
<PublishRepositoryUrl>true</PublishRepositoryUrl>

</PropertyGroup>
Expand All @@ -30,10 +29,14 @@
</PropertyGroup>

<PropertyGroup>

<SignAssembly>True</SignAssembly>
<DelaySign>False</DelaySign>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/sign.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</PropertyGroup>


<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/icon.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.10
0.1.0
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/BloomFilter.Redis/BloomFilter.Redis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<AssemblyName>BloomFilter.Redis</AssemblyName>
<AssemblyTitle>BloomFilter.Redis</AssemblyTitle>
<PackageId>BloomFilter.Redis.NetCore</PackageId>
<TargetFrameworks>netstandard2.0;net45;net461</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net461;net5.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand All @@ -13,7 +13,7 @@
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.6" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0'">
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0'OR '$(TargetFramework)' == 'net5.0'">
<PackageReference Include="StackExchange.Redis" Version="2.1.58" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/BloomFilter/BloomFilter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<AssemblyName>BloomFilter</AssemblyName>
<AssemblyTitle>BloomFilter</AssemblyTitle>
<PackageId>BloomFilter.NetCore</PackageId>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net5.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion test/BenchmarkTest/BenchmarkTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net472;net5.0</TargetFrameworks>
<LangVersion>8.0</LangVersion>
</PropertyGroup>

Expand Down
6 changes: 2 additions & 4 deletions test/BloomFilter.Redis.Test/BloomFilter.Redis.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>

<IsPackable>false</IsPackable>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions test/BloomFilterTest/BloomFilterTest.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion test/Demo/Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>


Expand Down
2 changes: 1 addition & 1 deletion test/PerformanceTest/PerformanceTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>


Expand Down

0 comments on commit f028b73

Please sign in to comment.