-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMicrosoft.Extensions.Caching.ServiceStackRedis.csproj
43 lines (38 loc) · 1.78 KB
/
Microsoft.Extensions.Caching.ServiceStackRedis.csproj
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using ServiceStack.Redis.Core</Description>
<Authors>cnblogs.com</Authors>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0</TargetFrameworks>
<AssemblyName>ServiceStackRedisCache</AssemblyName>
<PackageTags>cache;redis;distributedcache</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/cnblogs/ServiceStackRedisCache</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/cnblogs/ServiceStackRedisCache</RepositoryUrl>
<LangVersion>Latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\**" />
<EmbeddedResource Remove="Properties\**" />
<None Remove="Properties\**" />
</ItemGroup>
<Choose>
<When Condition="'$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net7.0'">
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
</ItemGroup>
</Otherwise>
</Choose>
<ItemGroup>
<PackageReference Include="ServiceStack.Interfaces" Version="6.5.0" />
<PackageReference Include="ServiceStack.Redis" Version="6.5.0" />
</ItemGroup>
</Project>