forked from dotnet/yarp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYarp.Tests.Common.csproj
More file actions
25 lines (21 loc) · 997 Bytes
/
Yarp.Tests.Common.csproj
File metadata and controls
25 lines (21 loc) · 997 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(TestTFMs)</TargetFrameworks>
<OutputType>Library</OutputType>
<RootNamespace>Yarp.Common.Tests</RootNamespace>
<!-- This is a test utility project. -->
<IsTestProject>false</IsTestProject>
<IsTestUtilityProject>true</IsTestUtilityProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="$(AutofacVersion)" />
<PackageReference Include="Autofac.Extras.Moq" Version="$(AutofacExtrasMoqVersion)" />
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)" />
<PackageReference Include="Moq" Version="$(MoqVersion)" />
<PackageReference Include="xunit.v3.extensibility.core" Version="$(XUnitV3Version)" />
<PackageReference Include="xunit.v3.assert" Version="$(XUnitV3Version)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ReverseProxy\Yarp.ReverseProxy.csproj" />
</ItemGroup>
</Project>