* Update gitignore * Move csproj * Update project references * Update solutions * Update build scripts * Tests used to share editorconfig with projects in src * Fix broken tests. * Stop copying around .editorconfig merged root one with linting * csharp_style_expression_bodied -> suggestion * Move StyleCop rulesets to matching directories and update shared build properties * Remove legacy build files, update NuGet.cofig and solution files * Restore myget source * Clean up .gitignore * Update .gitignore * Move new test classes to tests after merge * Gitignore + nuget config * Move new test Co-authored-by: Ronald Barendse <ronald@barend.se>
43 lines
1.9 KiB
XML
43 lines
1.9 KiB
XML
<Project>
|
|
<!-- Enable multi-level merging -->
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
|
|
|
|
<PropertyGroup>
|
|
<Version>9.1.0</Version>
|
|
<AssemblyVersion>9.1.0</AssemblyVersion>
|
|
<InformationalVersion>9.1.0</InformationalVersion>
|
|
<FileVersion>9.1.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>
|