2022-04-03 16:35:42 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>netstandard2.0;net48</TargetFrameworks>
|
|
|
|
|
<RootNamespace>k8s</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-09-11 07:42:11 -07:00
|
|
|
<PackageReference Include="BouncyCastle.Cryptography" Version="2.2.1" />
|
2023-09-12 14:08:11 -07:00
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.0.0" />
|
2023-01-03 02:41:32 -08:00
|
|
|
<PackageReference Include="IdentityModel.OidcClient" Version="5.2.1" />
|
2023-01-05 09:13:59 -08:00
|
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="7.0.0" />
|
2022-04-03 16:35:42 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\KubernetesClient.Models\KubernetesClient.Models.csproj" />
|
|
|
|
|
<ProjectReference Include="..\KubernetesClient.Basic\KubernetesClient.Basic.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-01-05 09:11:59 -08:00
|
|
|
<Compile Include="..\KubernetesClient\FileSystem.cs" />
|
2022-04-03 16:35:42 -07:00
|
|
|
<Compile Include="..\KubernetesClient\IKubernetes.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Kubernetes.ConfigInit.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Kubernetes.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\KubernetesClientConfiguration.ConfigFile.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\KubernetesClientConfiguration.InCluster.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\KubernetesClientConfiguration.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\KubernetesException.cs" />
|
|
|
|
|
|
2022-06-28 15:17:35 -07:00
|
|
|
<Compile Include="..\KubernetesClient\ChannelIndex.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\IStreamDemuxer.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\ByteBuffer.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\StreamDemuxer.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\MuxedStream.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\StreamType.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\IKubernetes.WebSocket.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Kubernetes.WebSocket.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\WebSocketBuilder.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\WebSocketProtocol.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Utilities.cs" />
|
2022-08-21 13:31:36 -07:00
|
|
|
<Compile Include="..\KubernetesClient\ExecAsyncCallback.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\IKubernetes.Exec.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Kubernetes.Exec.cs" />
|
2022-06-28 15:17:35 -07:00
|
|
|
|
2023-01-05 09:13:59 -08:00
|
|
|
<Compile Include="..\KubernetesClient\Watcher.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\WatcherExt.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\LineSeparatedHttpContent.cs" />
|
|
|
|
|
|
2022-04-03 16:35:42 -07:00
|
|
|
<Compile Include="..\KubernetesClient\Exceptions\KubeConfigException.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Exceptions\KubernetesClientException.cs" />
|
|
|
|
|
|
|
|
|
|
<Compile Include="..\KubernetesClient\Authentication\ExecTokenProvider.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Authentication\GcpTokenProvider.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Authentication\OidcTokenProvider.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Authentication\TokenFileAuth.cs" />
|
2022-12-15 18:21:36 -08:00
|
|
|
<Compile Include="..\KubernetesClient\Authentication\BasicAuthenticationCredentials.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Authentication\ITokenProvider.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Authentication\ServiceClientCredentials.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Authentication\StringTokenProvider.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\Authentication\TokenCredentials.cs" />
|
2022-04-03 16:35:42 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System.Net.Http" Condition="'$(TargetFramework)' == 'net48'" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|