<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> <Authors>Pulumi</Authors> <Company>Pulumi</Company> <Description>A Pulumi package for creating and managing Kubernetes resources.</Description> <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> <PackageProjectUrl>https://pulumi.com</PackageProjectUrl> <RepositoryUrl>https://github.com/pulumi/pulumi-kubernetes</RepositoryUrl> <PackageIcon>logo.png</PackageIcon> <TargetFramework>net6.0</TargetFramework> <Nullable>enable</Nullable> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <GenerateDocumentationFile>true</GenerateDocumentationFile> <NoWarn>1701;1702;1591</NoWarn> </PropertyGroup> <PropertyGroup> <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> <EmbedUntrackedSources>true</EmbedUntrackedSources> <PublishRepositoryUrl>true</PublishRepositoryUrl> </PropertyGroup> <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> </ItemGroup> <ItemGroup> <EmbeddedResource Include="version.txt" /> <None Include="version.txt" Pack="True" PackagePath="content" /> </ItemGroup> <ItemGroup> <EmbeddedResource Include="pulumi-plugin.json" /> <None Include="pulumi-plugin.json" Pack="True" PackagePath="content" /> </ItemGroup> <ItemGroup> <PackageReference Include="Glob" Version="1.1.5" /> <PackageReference Include="Pulumi" Version="3.*" /> </ItemGroup> <ItemGroup> </ItemGroup> <ItemGroup> <None Include="logo.png"> <Pack>True</Pack> <PackagePath></PackagePath> </None> </ItemGroup> </Project>