41 lines
1.8 KiB
XML
41 lines
1.8 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<!--
|
|
- We use the same version number for all stable
|
|
- packages. See RELEASING.md for details.
|
|
-->
|
|
<Version>2.7.1</Version>
|
|
<PackageValidationBaselineVersion>2.7.0</PackageValidationBaselineVersion>
|
|
|
|
<!-- Make the repository root available for other properties -->
|
|
<RepoRoot>$([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))</RepoRoot>
|
|
|
|
<!-- Build properties -->
|
|
<AssemblyOriginatorKeyFile>$(RepoRoot)/CloudEventsSdk.snk</AssemblyOriginatorKeyFile>
|
|
<SignAssembly>True</SignAssembly>
|
|
<Deterministic>True</Deterministic>
|
|
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<EnablePackageValidation>true</EnablePackageValidation>
|
|
<ApiCompatEnableRuleCannotChangeParameterName>true</ApiCompatEnableRuleCannotChangeParameterName>
|
|
|
|
<!-- Package properties -->
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<PackageIcon>nuget-icon.png</PackageIcon>
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/cloudevents/sdk-csharp</RepositoryUrl>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://cloudevents.io</PackageProjectUrl>
|
|
<Copyright>Copyright Cloud Native Foundation</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<!-- Package the icon specified in the PackageIcon property -->
|
|
<ItemGroup>
|
|
<None Include="$(RepoRoot)\nuget-icon.png" Pack="true" PackagePath=""/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|