* Fix Umbraco.Web.UI.Login not showing up in solution * Update PackageValidationBaselineVersion to 13.0.0-rc1 and remove all CompatibilitySuppressions.xml files * Remove unnecessary package references * Move Microsoft.EntityFrameworkCore.Design reference and add comment * Disable package validation and fix override in tests * Inherit package validation setting for EF Core projects
22 lines
928 B
XML
22 lines
928 B
XML
<Project>
|
|
<!-- Enable multi-level merging -->
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
|
|
|
|
<PropertyGroup>
|
|
<!-- Disable packaging and validation for test projects to fix benchmarks (that auto-generates boilerplate code) -->
|
|
<IsPackable>false</IsPackable>
|
|
<BaseEnablePackageValidation>$(EnablePackageValidation)</BaseEnablePackageValidation>
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- TODO: Update test projects to use nullable reference types and remove this to enable nullable warnings as errors (the solution default) -->
|
|
<Nullable>annotations</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<!-- Specify rule set for all test projects -->
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)codeanalysis.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
</Project>
|