-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPact.Cache.csproj
23 lines (19 loc) · 1.03 KB
/
Pact.Cache.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>💨 Distributed caching service</Description>
<PackageTags>Redis, Cache, Sql Server</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.*" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="6.0.*" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.*" />
<PackageReference Include="Microsoft.Extensions.Caching.SqlServer" Version="6.0.*" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="6.0.*" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="6.0.*" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Pact.Core\Pact.Core.csproj" />
</ItemGroup>
</Project>