-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathCacheCow.Client.csproj
More file actions
27 lines (27 loc) · 1.09 KB
/
Copy pathCacheCow.Client.csproj
File metadata and controls
27 lines (27 loc) · 1.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net8.0</TargetFrameworks>
<Summary>Client constructs for HTTP Caching</Summary>
<AssemblyName>CacheCow.Client</AssemblyName>
<PackageId>CacheCow.Client</PackageId>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Common\TraceWriter.cs" Link="TraceWriter.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CacheCow.Common\CacheCow.Common.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
<Reference Include="System.Runtime.Caching" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="2.0.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
</ItemGroup>
</Project>