35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<!-- Common properties for all projects -->
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarningsAsErrors />
|
|
<NoWarn>$(NoWarn);CS1591;CA1720;CA1304;CA1305;CA1311;CA1822;CA1852;CA1805;CA1002;CA1062;CA1860;CA2201;CA1859</NoWarn> <!-- Suppress various warnings for now -->
|
|
|
|
<!-- Deterministic builds -->
|
|
<Deterministic>true</Deterministic>
|
|
<Features>strict</Features>
|
|
|
|
<!-- Strong naming -->
|
|
<SignAssembly>false</SignAssembly>
|
|
|
|
<!-- Code analysis -->
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<AnalysisLevel>latest-recommended</AnalysisLevel>
|
|
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugType>portable</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
</Project> |