2024-06-16 12:41:28 +08:00
|
|
|
|
2022-03-29 22:01:26 +02:00
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)\kubernetes-client.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
|
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors>The Kubernetes Project Authors</Authors>
|
|
|
|
|
<Copyright>2017 The Kubernetes Project Authors</Copyright>
|
|
|
|
|
<Description>Client library for the Kubernetes open source container orchestrator.</Description>
|
|
|
|
|
|
|
|
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
|
|
|
<PackageProjectUrl>https://github.com/kubernetes-client/csharp</PackageProjectUrl>
|
|
|
|
|
<PackageIconUrl>https://raw.githubusercontent.com/kubernetes/kubernetes/master/logo/logo.png</PackageIconUrl>
|
|
|
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
|
|
|
<PackageTags>kubernetes;docker;containers;</PackageTags>
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
|
|
|
|
|
<!-- 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>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
2022-12-15 18:21:36 -08:00
|
|
|
<LangVersion>11.0</LangVersion>
|
2022-03-29 22:01:26 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
|
|
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="../../logo.png" Pack="true" Visible="false" PackagePath="" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|