42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<Version>9.0.0</Version>
|
|
<AssemblyVersion>9.0.0</AssemblyVersion>
|
|
<InformationalVersion>9.0.0-rc002</InformationalVersion>
|
|
<FileVersion>9.0.0</FileVersion>
|
|
<LangVersion Condition="'$(LangVersion)' == ''">9.0</LangVersion>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<Company>Umbraco CMS</Company>
|
|
<Copyright>Copyright © Umbraco 2021</Copyright>
|
|
<Authors>Umbraco HQ</Authors>
|
|
<PackageProjectUrl>https://umbraco.com/</PackageProjectUrl>
|
|
<PackageIconUrl>https://umbraco.com/dist/nuget/logo-small.png</PackageIconUrl>
|
|
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<PackageTags>umbraco</PackageTags>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/umbraco/umbraco-cms</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- SourceLink: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element)-->
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
<!-- SourceLink: Embed source files that are not tracked by the source control manager in the PDB -->
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
<!-- SourceLink: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
|
|
<!-- SourceLink: Deterministic -->
|
|
<!-- https://github.com/clairernovotny/DeterministicBuilds -->
|
|
<!-- Only for Azure Pipelines CI Build -->
|
|
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|
|
|