2017-06-22 22:41:42 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-07-24 20:56:24 +02:00
|
|
|
|
<PropertyGroup>
|
2017-06-22 22:41:42 +02:00
|
|
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2017-07-24 20:56:24 +02:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
|
2017-07-24 21:12:22 +02:00
|
|
|
|
<PackageReference Include="xunit" Version="2.3.0-beta3-build3705" />
|
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta3-build3705" />
|
|
|
|
|
|
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0-beta3-build3705" />
|
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>
|
|
|
|
|
|
</Project>
|