-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZibStack.NET.Aop.HybridCache.csproj
More file actions
28 lines (23 loc) · 1.16 KB
/
ZibStack.NET.Aop.HybridCache.csproj
File metadata and controls
28 lines (23 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>ZibStack.NET.Aop.HybridCache</PackageId>
<Description>HybridCache aspect for ZibStack.NET.Aop — [HybridCache] with L1/L2 caching (memory + Redis/distributed) via Microsoft.Extensions.Caching.Hybrid.</Description>
<Authors>$(Authors)</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MistyKuu/ZibStack.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/MistyKuu/ZibStack.NET</RepositoryUrl>
<PackageTags>aop;cache;hybridcache;redis;distributed;source-generator</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ZibStack.NET.Aop.Abstractions\ZibStack.NET.Aop.Abstractions.csproj" />
<PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="9.4.0" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>