2020-11-22 14:52:09 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-05-19 19:46:31 +02:00
|
|
|
|
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
|
|
|
|
2021-05-19 19:46:31 +02:00
|
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
2017-11-02 21:20:24 -07:00
|
|
|
<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>
|
|
|
|
|
|
2021-05-19 19:46:31 +02:00
|
|
|
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>
|
2017-10-13 02:00:38 +08:00
|
|
|
<RootNamespace>k8s</RootNamespace>
|
2018-05-05 06:51:31 +02:00
|
|
|
<SignAssembly>true</SignAssembly>
|
2018-06-01 20:27:00 +02:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
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>
|
2021-05-19 19:46:31 +02:00
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
|
|
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
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>
|
2020-12-13 19:55:27 -08:00
|
|
|
<PackageReference Include="AutoMapper" Version="9.0.0" />
|
2020-03-10 15:19:37 -07:00
|
|
|
<PackageReference Include="Fractions" Version="4.0.1" />
|
2020-11-17 10:38:05 -08:00
|
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="all" />
|
2018-01-10 22:39:57 +01:00
|
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.8.1.3" />
|
2017-11-16 13:27:25 +08:00
|
|
|
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.10" />
|
2021-04-09 08:53:05 -07:00
|
|
|
<PackageReference Include="prometheus-net" Version="4.1.1" />
|
2020-10-27 09:22:00 -07:00
|
|
|
<PackageReference Include="YamlDotNet" Version="8.1.2" />
|
2020-03-22 21:20:45 -07:00
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
2020-12-13 19:55:27 -08:00
|
|
|
<PackageReference Include="System.Buffers" Version="4.5.1" />
|
2021-01-19 23:07:59 +01:00
|
|
|
<PackageReference Include="IdentityModel.OidcClient" Version="3.1.2" />
|
2018-01-26 14:03:45 +08:00
|
|
|
</ItemGroup>
|
2021-05-19 19:46:31 +02:00
|
|
|
|
|
|
|
|
</Project>
|