forked from dotnet/yarp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYarp.ReverseProxy.FunctionalTests.csproj
More file actions
34 lines (27 loc) · 1.19 KB
/
Yarp.ReverseProxy.FunctionalTests.csproj
File metadata and controls
34 lines (27 loc) · 1.19 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
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(TestTFMs)</TargetFrameworks>
<NoWarn>$(NoWarn);SYSLIB0057</NoWarn>
<OutputType>Exe</OutputType>
<RootNamespace>Yarp.ReverseProxy</RootNamespace>
<!--
Arcade test detection looks for known suffixes like '.Tests' or '.UnitTests'
so we need to explicitly specify that this is a test project.
-->
<IsUnitTestProject>true</IsUnitTestProject>
</PropertyGroup>
<ItemGroup>
<Content Include="..\TestCertificates\testCert.pfx" LinkBase="TestCertificates" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ReverseProxy\Yarp.ReverseProxy.csproj" />
<ProjectReference Include="..\..\src\TelemetryConsumption\Yarp.Telemetry.Consumption.csproj" />
<ProjectReference Include="..\Tests.Common\Yarp.Tests.Common.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\ReverseProxy.Tests\Common\TestResources.cs" Link="Common\TestResources.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.XUnitV3Extensions" Version="$(MicrosoftDotNetXUnitV3ExtensionsPackageVersion)" />
</ItemGroup>
</Project>