-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCleverCache.csproj
More file actions
24 lines (24 loc) · 1.25 KB
/
Copy pathCleverCache.csproj
File metadata and controls
24 lines (24 loc) · 1.25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>CleverCache</PackageId>
<PackageProjectUrl>https://github.com/chunty/CleverCache/wiki</PackageProjectUrl>
<Description>Like MemoryCache but better! Automatically invalidates cache by entity type, supports memory cache, distributed cache, or a custom provider.</Description>
<PackageTags>MemoryCache,DistributedCache,Automatic Cache,Cache Invalidation</PackageTags>
<PackageReadmeFile>NuGetReadMe.md</PackageReadmeFile>
<!-- Prevent the parent project from globbing files in nested sub-projects -->
<DefaultItemExcludes>$(DefaultItemExcludes);CleverCache.MediatR\**;CleverCache.Redis\**;CleverCache.Tests\**;CleverCache.EntityFrameworkCore\**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AsyncKeyedLock" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
</ItemGroup>
<ItemGroup>
<None Include="NuGetReadMe.md" Pack="true" PackagePath="NuGetReadMe.md" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>CleverCache.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>