Skip to content

Commit 1586eda

Browse files
committed
Prepare 8.0 nuget release
1 parent b8aa5e2 commit 1586eda

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# SqliteCache for ASP.NET Core
22

3-
[SqliteCache](https://neosmart.net/blog/2019/sqlite-cache-for-asp-net-core) is a persistent cache
3+
[SqliteCache](https://neosmart.net/blog/sqlite-cache-for-asp-net-core) is a persistent cache
44
implementing `IDistributedCache` for .NET and ASP.NET Core projects.
55

66
SqliteCache uses a locally stored SQLite database file (taking advantage of SQLite's battle-tested
77
safe multi-threaded access features) to replicate persistent caching, allowing developers to mimic
88
the behavior of staging or production targets without all the overhead or hassle of a traditional
99
`IDistributedCache` implementation. You can read more about its design and inspiration in [the
10-
official release post](https://neosmart.net/blog/2019/sqlite-cache-for-asp-net-core) on the NeoSmart
10+
official release post](https://neosmart.net/blog/sqlite-cache-for-asp-net-core) on the NeoSmart
1111
blog.
1212

1313
## Why `NeoSmart.Caching.Sqlite`?
@@ -37,8 +37,8 @@ follows:
3737
Install-Package NeoSmart.Caching.Sqlite
3838
```
3939

40-
If using this in an ASP.NET Core project, install NeoSmart.Caching.Sqlite.AspNetCore to get a
41-
convenient helper method for dependency injection (used below):
40+
**If using this in an ASP.NET Core project**, you can install `NeoSmart.Caching.Sqlite.AspNetCore` (also
41+
or instead) to get a convenient helper method for dependency injection (used below):
4242

4343
```
4444
Install-Package NeoSmart.Caching.Sqlite.AspNetCore

SqliteCache.AspNetCore/SqliteCache.AspNetCore.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<TargetFramework>netstandard2.1</TargetFramework>
77
<Nullable>enable</Nullable>
88
<LangVersion>11</LangVersion>
9-
<Version>7.0.2</Version>
9+
<Version>8.0.0</Version>
1010
<SignAssembly>true</SignAssembly>
1111
<AssemblyOriginatorKeyFile>../SqliteCache/NeoSmart.Caching.Sqlite.snk</AssemblyOriginatorKeyFile>
1212
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -16,9 +16,9 @@
1616
<Authors>Mahmoud Al-Qudsi, neosmart, mqudsi</Authors>
1717
<Company>NeoSmart Technologies</Company>
1818
<Description>ASP.NET Core dependency-injection integrations for NeoSmart.Caching.Sqlite</Description>
19-
<Copyright>NeoSmart Technologies 2019-2023</Copyright>
19+
<Copyright>NeoSmart Technologies 2019-2024</Copyright>
2020
<PackageLicenseExpression>MIT</PackageLicenseExpression>
21-
<PackageProjectUrl>https://neosmart.net/blog/2019/sqlite-cache-for-asp-net-core</PackageProjectUrl>
21+
<PackageProjectUrl>https://neosmart.net/blog/sqlite-cache-for-asp-net-core</PackageProjectUrl>
2222
<RepositoryUrl>https://github.com/neosmart/AspSqliteCache</RepositoryUrl>
2323
<RepositoryType>git</RepositoryType>
2424
<PackageTags>idistributedcache, cache, sqlite, sqlitecache, aspnetcore</PackageTags>
@@ -33,7 +33,7 @@
3333

3434
<ItemGroup>
3535
<ProjectReference Include="..\SqliteCache\SqliteCache.csproj" />
36-
<PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.6" />
36+
<PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.8" />
3737
</ItemGroup>
3838

3939
</Project>

SqliteCache.Tests/SqliteCache.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net8.0</TargetFrameworks>
55
<LangVersion>preview</LangVersion>
66
<IsPackable>false</IsPackable>
77
<AssemblyName>NeoSmart.Caching.Sqlite.Tests</AssemblyName>
@@ -10,11 +10,11 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
15-
<PackageReference Include="MSTest.TestAdapter" Version="3.0.2" />
16-
<PackageReference Include="MSTest.TestFramework" Version="3.0.2" />
17-
<PackageReference Include="SQLitePCLRaw.bundle_green" Version="*" />
13+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
15+
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2" />
16+
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" />
17+
<PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.8" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

SqliteCache/SqliteCache.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0;net6.0;net8.0</TargetFrameworks>
55
<LangVersion>9.0</LangVersion>
66
<AssemblyName>NeoSmart.Caching.Sqlite</AssemblyName>
77
<RootNamespace>NeoSmart.Caching.Sqlite</RootNamespace>
8-
<Version>7.0.1</Version>
8+
<Version>8.0.0</Version>
99
<Nullable>enable</Nullable>
1010
<Authors>Mahmoud Al-Qudsi, neosmart, mqudsi</Authors>
1111
<Company>NeoSmart Technologies</Company>
1212
<Product>SqliteCache</Product>
1313
<Description>An SQLite-backed IDistributedCache cache implementation for ASP.NET Core. Fast, transparent, persistent caching.</Description>
14-
<Copyright>NeoSmart Technologies 2019-2023</Copyright>
14+
<Copyright>NeoSmart Technologies 2019-2024</Copyright>
1515
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1616
<PackageProjectUrl>https://neosmart.net/blog/2019/sqlite-cache-for-asp-net-core</PackageProjectUrl>
1717
<RepositoryUrl>https://github.com/neosmart/AspSqliteCache</RepositoryUrl>
@@ -71,11 +71,11 @@ Version 3.1:
7171
</ItemGroup>
7272

7373
<ItemGroup>
74-
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="7.0.10" />
75-
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0" />
76-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
77-
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.1" />
78-
<PackageReference Include="SQLitePCLRaw.core" Version="2.1.6" />
74+
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="8.0.2" />
75+
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
76+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
77+
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
78+
<PackageReference Include="SQLitePCLRaw.core" Version="2.1.8" />
7979
</ItemGroup>
8080

8181
<ItemGroup>

0 commit comments

Comments
 (0)