-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathCacheCow.Client.Tests.csproj
More file actions
32 lines (32 loc) · 1.28 KB
/
Copy pathCacheCow.Client.Tests.csproj
File metadata and controls
32 lines (32 loc) · 1.28 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
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net462;$(TargetFrameworks)</TargetFrameworks>
<Summary>Client constructs for HTTP Caching</Summary>
<AssemblyName>CacheCow.Client.Tests</AssemblyName>
<PackageId>CacheCow.Client.Tests</PackageId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Data\Request.cs" />
<Compile Remove="Data\Response.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Common\DummyMessageHandler.cs" Link="DummyMessageHandler.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Data\Request.cs" />
<Content Include="Data\Response.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\CacheCow.Common\CacheCow.Common.csproj" />
<ProjectReference Include="..\..\src\CacheCow.Client\CacheCow.Client.csproj" />
</ItemGroup>
</Project>