This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[*.cs] | |
# Dereference of a possibly null reference. | |
dotnet_diagnostic.CS8602.severity = error | |
# Object or collection initializer implicitly dereferences possibly null member. | |
dotnet_diagnostic.CS8670.severity = error | |
# Possible null reference assignment. | |
dotnet_diagnostic.CS8601.severity = error | |
# Unboxing a possibly null value. | |
dotnet_diagnostic.CS8605.severity = error | |
# Possible null reference return. |