2022-02-20 14:34:10 -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-11-15 19:39:25 -08:00
|
|
|
<TargetFrameworks>netstandard2.1;net5;net6</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>
|
2021-12-13 07:31:59 -08:00
|
|
|
<LangVersion>10.0</LangVersion>
|
2021-05-19 19:46:31 +02:00
|
|
|
</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
|
|
|
|
2021-12-19 08:59:24 -08:00
|
|
|
<ItemGroup>
|
2021-12-22 17:16:44 -08:00
|
|
|
<AdditionalFiles Include="swagger.json" />
|
2022-02-20 14:34:10 -08:00
|
|
|
<ProjectReference Include="..\..\gen\LibKubernetesGenerator\LibKubernetesGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
2021-12-19 08:59:24 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-06-06 23:02:14 -07:00
|
|
|
<ItemGroup>
|
2021-10-14 18:02:51 +02:00
|
|
|
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
|
|
|
|
<PackageReference Include="Fractions" Version="7.0.0" />
|
2022-02-20 14:34:10 -08:00
|
|
|
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.255" PrivateAssets="all" />
|
2021-10-14 18:02:51 +02:00
|
|
|
<PackageReference Include="prometheus-net" Version="5.0.1" />
|
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.13.1" />
|
|
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="13.2.47" />
|
|
|
|
|
<PackageReference Include="YamlDotNet" Version="11.2.1" />
|
2022-02-20 14:34:10 -08:00
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
2021-10-14 18:02:51 +02:00
|
|
|
<PackageReference Include="IdentityModel.OidcClient" Version="4.0.0" />
|
2021-12-13 07:31:59 -08:00
|
|
|
|
|
|
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.8.10" Condition="'$(TargetFramework)' == 'netstandard2.1'" />
|
|
|
|
|
<PackageReference Include="System.Text.Json" Version="6.0.0" Coondition="'$(TargetFramework)' == 'netstandard2.1'" />
|
2021-12-19 08:59:24 -08:00
|
|
|
|
2018-01-26 14:03:45 +08:00
|
|
|
</ItemGroup>
|
2021-05-19 19:46:31 +02:00
|
|
|
|
2021-08-04 10:51:25 -04:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Util\Informer" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-05-19 19:46:31 +02:00
|
|
|
</Project>
|