Fix IDE analyzer errors for aspnetcore (#16268) (#16276)

This commit is contained in:
Matt Thalman 2023-05-01 09:28:11 -05:00 committed by GitHub
parent 2487ca15dc
commit b1fceb6a00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,9 @@
<!-- CA1512 - Use 'ArgumentOutOfRangeException.ThrowIfEqual'
Requires https://github.com/dotnet/aspnetcore/issues/47673 -->
<RepoNoWarns>CA1512</RepoNoWarns>
<!-- IDE0005 - Using directive is unnecessary: https://github.com/dotnet/aspnetcore/issues/47932 -->
<!-- IDE0059 - Unnecessary assignment of a value: https://github.com/dotnet/aspnetcore/pull/47931 -->
<RepoNoWarns>CA1512;IDE0005;IDE0059</RepoNoWarns>
</PropertyGroup>
<ItemGroup>