2022-04-03 16:35:42 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>netstandard2.0;net48</TargetFrameworks>
|
|
|
|
|
<RootNamespace>k8s</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-07-09 09:57:46 -07:00
|
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
|
2022-12-13 14:15:34 -08:00
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="18.0.1" />
|
2022-12-04 07:17:54 -08:00
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.25.1" />
|
2022-12-05 02:37:02 -08:00
|
|
|
<PackageReference Include="IdentityModel.OidcClient" Version="5.2.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>
|
|
|
|
|
<Compile Include="..\KubernetesClient\CertUtils.cs" />
|
|
|
|
|
<Compile Include="..\KubernetesClient\FileUtils.cs" />
|
|
|
|
|
<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
|
|
|
|
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" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System.Net.Http" Condition="'$(TargetFramework)' == 'net48'" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|