2023-12-06 08:19:46 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-10-18 08:14:04 +01:00
|
|
|
<Project>
|
|
|
|
|
<!-- Enable multi-level merging -->
|
2023-12-06 08:19:46 +01:00
|
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props, $(MSBuildThisFileDirectory)..))" />
|
2021-10-18 08:14:04 +01:00
|
|
|
|
2023-07-06 07:51:49 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<!-- Disable packaging and validation for test projects to fix benchmarks (that auto-generates boilerplate code) -->
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2023-11-09 08:39:42 +01:00
|
|
|
<BaseEnablePackageValidation>$(EnablePackageValidation)</BaseEnablePackageValidation>
|
2023-07-06 07:51:49 +02:00
|
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
2024-10-28 13:19:46 +01:00
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
2023-07-06 07:51:49 +02:00
|
|
|
</PropertyGroup>
|
2024-10-28 13:19:46 +01:00
|
|
|
|
2022-10-05 12:11:51 +02:00
|
|
|
<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>
|
2023-03-24 08:40:51 +01:00
|
|
|
|
2021-10-18 08:14:04 +01:00
|
|
|
<!-- Specify rule set for all test projects -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)codeanalysis.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|