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>
|
|
|
|
|
|
2020-03-08 15:57:34 -07:00
|
|
|
<TargetFrameworks>netstandard2.0;net452;netcoreapp2.1</TargetFrameworks>
|
|
|
|
|
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">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>
|
2019-03-22 18:34:52 +01:00
|
|
|
|
|
|
|
|
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
|
|
|
|
|
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
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>
|
2019-12-06 10:42:49 +09:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="1.1.2" Condition="'$(TargetFramework)' != 'netstandard2.0' and '$(TargetFramework)' != 'netcoreapp2.1'" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="3.0.0" Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netcoreapp2.1'" />
|
2020-01-22 21:34:49 -03:00
|
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.0.50" PrivateAssets="all" />
|
2018-01-10 22:39:57 +01:00
|
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.8.1.3" />
|
2020-02-13 16:50:18 -08:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="1.1.2" Condition="'$(TargetFramework)' != 'netstandard2.0'" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
|
2017-11-16 13:27:25 +08:00
|
|
|
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.10" />
|
2019-12-06 10:42:49 +09:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" Condition="'$(TargetFramework)' != 'netstandard2.0' and '$(TargetFramework)' != 'netcoreapp2.1'" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netcoreapp2.1'" />
|
2019-03-23 00:56:08 +01:00
|
|
|
<PackageReference Include="YamlDotNet" Version="6.0.0" />
|
2019-03-22 18:34:52 +01:00
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
|
2018-01-26 14:03:45 +08:00
|
|
|
</ItemGroup>
|
2020-03-08 15:57:34 -07:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net452'">
|
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>
|
2019-03-12 15:18:39 -07:00
|
|
|
</Project>
|