-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathKubernetesAgent.IntegrationTests.csproj
More file actions
62 lines (56 loc) · 2.78 KB
/
KubernetesAgent.IntegrationTests.csproj
File metadata and controls
62 lines (56 loc) · 2.78 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>KubernetesAgent.Integration</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
<PackageReference Include="Octopus.Client" Version="17.15.2394" />
<PackageReference Include="Octopus.Tentacle.Client" Version="9.1.3703" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.XUnit" Version="3.0.5" />
<PackageReference Include="xunit" Version="2.5.3"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3"/>
</ItemGroup>
<ItemGroup>
<Using Include="Xunit"/>
</ItemGroup>
<ItemGroup>
<None Remove="Setup\linux-network-routing.yaml" />
<EmbeddedResource Include="Setup\linux-network-routing.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<None Remove="Setup\docker-desktop-network-routing.yaml" />
<EmbeddedResource Include="Setup\docker-desktop-network-routing.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<None Remove="Setup\kind-config.yaml" />
<EmbeddedResource Include="Setup\kind-config.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<None Remove="Setup\agent-values.yaml" />
<EmbeddedResource Include="Setup\agent-values.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<None Remove="Setup\Common\Certificates\Server.pfx" />
<EmbeddedResource Include="Setup\Common\Certificates\Server.pfx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<None Remove="Setup\Common\Certificates\Tentacle.pfx" />
<EmbeddedResource Include="Setup\Common\Certificates\Tentacle.pfx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<None Remove="Setup\docker-registry-credentials-secret.yaml" />
<EmbeddedResource Include="Setup\docker-registry-credentials-secret.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
</Project>