* Initial port of cache functions from java client * Move lock in Cache.Replace to be less disruptive * Remove IListerWatcher as it's not used at the moment * Added todo in Cache.Get as reminder * TApiType implement IKubernetesObject * TApiType implement IKubernetesObject * TApiType implement class along with IKubernetesObject * Disable failing test until it can be figured out * Ran `dotnet format --fix-whitespace --fix-style` to put formatting in compliance * Moved contents of KubernetesClient.Util into KubernetesClient project * Moved contents of KubernetesClient.Util into KubernetesClient project #2 :(
35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MartinCostello.Logging.XUnit" Version="0.1.1" />
|
|
<PackageReference Include="FluentAssertions" Version="5.10.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="coverlet.collector" Version="1.3.0">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\src\KubernetesClient\KubernetesClient.csproj" />
|
|
<ProjectReference Include="..\..\src\KubernetesClient.Util\KubernetesClient.Util.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Cache" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|