* Ensure that awaits do not continue on the captured context. * Make functions async for maintainability. * Add documentation detailing the use of UIFact.
50 lines
1.8 KiB
XML
Executable File
50 lines
1.8 KiB
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>k8s.tests</RootNamespace>
|
|
<TargetFrameworks>netcoreapp2.1;netcoreapp2.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.9">
|
|
<!-- this is due to aspnet core 2.1 is not compatible with our code -->
|
|
<AllowExplicitVersion>true</AllowExplicitVersion>
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
|
<PackageReference Include="System.Reactive" Version="4.3.2" />
|
|
<PackageReference Include="Nito.AsyncEx" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
|
|
<Compile Remove="Kubernetes.Exec.Tests.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
|
|
<Compile Remove="Kubernetes.WebSockets.Tests.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="coverlet.msbuild" Version="2.8.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
|
|
<PackageReference Include="Xunit.StaFact" Version="0.3.18" />
|
|
<PackageReference Include="Moq" Version="4.13.1" />
|
|
|
|
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="assets/*" CopyToOutputDirectory="Always" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\KubernetesClient\KubernetesClient.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|