-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathCacheCow.Client.RedisCacheStore.Tests.csproj
More file actions
26 lines (26 loc) · 1.29 KB
/
Copy pathCacheCow.Client.RedisCacheStore.Tests.csproj
File metadata and controls
26 lines (26 loc) · 1.29 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
<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.RedisCacheStore.Tests</AssemblyName>
<PackageId>CacheCow.Client.RedisCacheStore.Tests</PackageId>
<PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp2.0|AnyCPU'">
<DocumentationFile />
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Common\DummyMessageHandler.cs" Link="DummyMessageHandler.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<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" />
<ProjectReference Include="..\..\src\CacheCow.Client.RedisCacheStore\CacheCow.Client.RedisCacheStore.csproj" />
</ItemGroup>
</Project>