forked from dotnet/yarp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYarp.Kubernetes.Tests.csproj
More file actions
45 lines (37 loc) · 1.47 KB
/
Yarp.Kubernetes.Tests.csproj
File metadata and controls
45 lines (37 loc) · 1.47 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
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(TestTFMs)</TargetFrameworks>
<OutputType>Exe</OutputType>
<NoWarn>$(NoWarn);CS8002</NoWarn>
<RootNamespace>Yarp.Kubernetes</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Kubernetes.Controller\Yarp.Kubernetes.Controller.csproj" />
<ProjectReference Include="..\Tests.Common\Yarp.Tests.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Moq" Version="$(MoqVersion)" />
<PackageReference Include="Polly" Version="$(PollyVersion)" />
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
</ItemGroup>
<ItemGroup>
<None Remove="Client\*.yaml" />
<None Remove="Certificates\cert.der" />
<None Remove="Certificates\cert.pem" />
<None Remove="Certificates\key.der" />
<None Remove="Certificates\key.pem" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Client\*.yaml" />
<EmbeddedResource Include="Certificates\cert.der" />
<EmbeddedResource Include="Certificates\cert.pem" />
<EmbeddedResource Include="Certificates\key.der" />
<EmbeddedResource Include="Certificates\key.pem" />
</ItemGroup>
<ItemGroup>
<Content Include="testassets\**\*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\ReverseProxy.Tests\Common\TaskExtensions.cs" Link="Common\TaskExtensions.cs" />
</ItemGroup>
</Project>