2019-03-22 18:32:50 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-06-06 23:02:14 -07:00
|
|
|
<PropertyGroup>
|
2017-11-02 21:20:24 -07:00
|
|
|
<Authors>The Kubernetes Project Authors</Authors>
|
|
|
|
|
<Copyright>2017 The Kubernetes Project Authors</Copyright>
|
|
|
|
|
<Description>Client library for the Kubernetes open source container orchestrator.</Description>
|
2017-12-11 05:21:09 +01:00
|
|
|
|
2017-11-02 21:20:24 -07:00
|
|
|
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
|
|
|
|
|
<PackageProjectUrl>https://github.com/kubernetes-client/csharp</PackageProjectUrl>
|
2018-03-28 13:08:34 +08:00
|
|
|
<PackageIconUrl>https://raw.githubusercontent.com/kubernetes/kubernetes/master/logo/logo.png</PackageIconUrl>
|
2017-11-02 21:20:24 -07:00
|
|
|
<PackageTags>kubernetes;docker;containers;</PackageTags>
|
|
|
|
|
|
2019-03-22 18:32:50 +01:00
|
|
|
<TargetFrameworks>netstandard1.4;netstandard2.0;net452;net461;netcoreapp2.1;xamarinios10;monoandroid81</TargetFrameworks>
|
|
|
|
|
<TargetFrameworks Condition="'$(MSBuildRuntimeType)' == 'Core'">netstandard1.4;netstandard2.0;net452;net461;netcoreapp2.1</TargetFrameworks>
|
|
|
|
|
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netstandard1.4;netstandard2.0;netcoreapp2.1</TargetFrameworks>
|
2017-10-13 02:00:38 +08:00
|
|
|
<RootNamespace>k8s</RootNamespace>
|
2018-05-05 06:51:31 +02:00
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<AssemblyOriginatorKeyFile>kubernetes-client.snk</AssemblyOriginatorKeyFile>
|
2018-06-01 20:27:00 +02:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<NoWarn>1701;1702;1591;1570;1572;1573;1574</NoWarn>
|
2017-06-06 23:02:14 -07:00
|
|
|
</PropertyGroup>
|
2018-01-26 14:03:45 +08:00
|
|
|
|
2017-06-06 23:02:14 -07:00
|
|
|
<ItemGroup>
|
2018-01-26 13:57:42 +08:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="1.1.2" />
|
2019-03-20 16:49:02 +01:00
|
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="2.3.138" PrivateAssets="all" />
|
2018-01-10 22:39:57 +01:00
|
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.8.1.3" />
|
2017-10-24 04:18:11 +08:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="1.1.2" />
|
2017-11-16 13:27:25 +08:00
|
|
|
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.10" />
|
2019-03-22 18:32:50 +01:00
|
|
|
<PackageReference Include="MSBuild.Sdk.Extras" Version="1.6.68" PrivateAssets="all" Condition="'$(MSBuildRuntimeType)' != 'Core'" />
|
2019-01-24 12:16:46 -08:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
2018-12-10 22:41:19 -08:00
|
|
|
<PackageReference Include="YamlDotNet.Signed" Version="5.1.0" />
|
2018-01-26 14:03:45 +08:00
|
|
|
</ItemGroup>
|
2019-03-22 18:32:50 +01:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net452' OR '$(TargetFramework)' == 'net461'">
|
2018-12-10 22:41:19 -08:00
|
|
|
<Reference Include="System.Net.Http.WebRequest" />
|
2019-03-22 18:32:50 +01:00
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
|
2018-01-26 14:03:45 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.4'">
|
2018-01-10 22:39:57 +01:00
|
|
|
<PackageReference Include="System.Net.WebSockets.Client" Version="4.3.2" />
|
2019-03-22 18:32:50 +01:00
|
|
|
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
|
2017-06-06 23:02:14 -07:00
|
|
|
</ItemGroup>
|
2018-09-10 04:00:45 +01:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'xamarinios10'">
|
|
|
|
|
<Reference Include="System.Numerics" />
|
|
|
|
|
<Reference Include="System.Runtime.Serialization" />
|
|
|
|
|
<Reference Include="Xamarin.iOS" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'monoandroid81'">
|
|
|
|
|
<Reference Include="Mono.Android" />
|
|
|
|
|
<Reference Include="System.Numerics" />
|
2018-12-10 22:41:19 -08:00
|
|
|
<Reference Include="System.Runtime.Serialization" />
|
2018-09-10 04:00:45 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
|
2019-03-12 15:18:39 -07:00
|
|
|
</Project>
|