Error on unused private properties (#2008)

* Error on unused private properties

* Remove nullable

* Delete some commented out code

* Fix compile
This commit is contained in:
Charles Gagnon
2023-04-17 13:27:13 -07:00
committed by GitHub
parent efc8d8f0be
commit c15108808f
8 changed files with 399 additions and 988 deletions

View File

@@ -14,6 +14,11 @@ dotnet_diagnostic.IDE0073.severity = none
dotnet_analyzer_diagnostic.severity = error
# The private field 'field' is assigned but its value is never used
dotnet_diagnostic.CS0414.severity = error
# The private field 'class member' is never used
dotnet_diagnostic.CS0169.severity = error
# Errors flagged when this file was added. These should be
# investigated and either fixed or marked as acceptable with
# a reason why