Skip to content

Commit 90a55e3

Browse files
committed
Use .NET core 2.1 release packages instead of preview
1 parent 1900ce1 commit 90a55e3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

DistillNET/DistillNET.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
<RepositoryUrl>https://github.com/TechnikEmpire/DistillNET</RepositoryUrl>
1010
<Description>DistillNET is a library for matching and filtering HTTP requests URLs using the Adblock Plus Filter format.</Description>
1111
<Copyright>Copyright © 2017 - 2018 Jesse Nicholson</Copyright>
12-
<Version>1.6.0</Version>
12+
<Version>1.6.1</Version>
1313
<Authors>Jesse Nicholson</Authors>
1414
<Company>Technik Empire</Company>
1515
<PackageTags>DistillNET Adblock AdblockPlus Adblock-Plus URL-Filter URL-Filtering Content-Filter Filter</PackageTags>
16-
<PackageReleaseNotes>Changed public API to use IEnumerable and yield return/yield break so that users do not have to load entire database query results to find matches. This should improve performance of matching.</PackageReleaseNotes>
17-
<AssemblyVersion>1.6.0.0</AssemblyVersion>
16+
<PackageReleaseNotes>Upgrade depends to .NET core 2.1 release.</PackageReleaseNotes>
17+
<AssemblyVersion>1.6.1.0</AssemblyVersion>
18+
<FileVersion>1.6.11.0</FileVersion>
1819
</PropertyGroup>
1920

2021
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@@ -26,8 +27,8 @@
2627
</PropertyGroup>
2728

2829
<ItemGroup>
29-
<PackageReference Include="Microsoft.Data.SQLite" Version="2.1.0-rc1-final" />
30-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="2.0.2" />
30+
<PackageReference Include="Microsoft.Data.SQLite" Version="2.1.0" />
31+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="2.1.0" />
3132
</ItemGroup>
3233

3334
</Project>

0 commit comments

Comments
 (0)