Hi There,
when migrating from netcoreapp3.1 to net5.0 deprecation messages for Microsoft.NetCore.Analyzers and Microsoft.CodeAnalysis.Analyzers appears:
CSC : warning CA9998: FxCopAnalyzers package has been deprecated in favor of 'Microsoft.CodeAnalysis.NetAnalyzers', that ships with the .NET SDK.
So I've removed the nugets and add
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
to <PropertyGroup> in csproj file.
But when executing dotnet build I only see 15 warnings while I see 125 warnings when enabling the deprecated nugets.
How can I get the messages back?
Bests
Chris