2017-09-14 10:47:41 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-07-24 20:56:24 +02:00
|
|
|
<PropertyGroup>
|
2017-09-27 21:51:00 -07:00
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2017-06-22 22:41:42 +02:00
|
|
|
<IsPackable>false</IsPackable>
|
2017-10-13 03:05:27 +08:00
|
|
|
<RootNamespace>k8s.tests</RootNamespace>
|
2017-06-22 22:41:42 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2017-10-21 21:28:08 +08:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.0" />
|
2017-10-12 01:21:27 +08:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
|
|
|
|
|
<PackageReference Include="xunit" Version="2.3.0" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0" />
|
2017-10-21 21:28:08 +08:00
|
|
|
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0" />
|
2017-06-22 22:41:42 +02:00
|
|
|
</ItemGroup>
|
2017-06-26 23:09:42 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="assets/*" CopyToOutputDirectory="Always" />
|
2017-07-24 20:56:24 +02:00
|
|
|
</ItemGroup>
|
2017-06-22 22:41:42 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\src\KubernetesClient.csproj" />
|
|
|
|
|
</ItemGroup>
|
2017-09-28 09:44:08 -07:00
|
|
|
</Project>
|