Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and adheres to a project-specific [Versioning](/README.md).

## [Unreleased]

### Changed

- Updated `S1133` to `suggestion`, because while we do want deprecated code to be removed eventually, marking code as obsolete should not immediately break the build.

## [3.1.0] - 2024-09-19

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions build/Neolution.CodeAnalysis.globalconfig
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ dotnet_diagnostic.S3267.severity = suggestion
; Developers should be warned when they create disposable objects without disposing them
dotnet_diagnostic.CA2000.severity = warning

# S1133 Do not forget to remove this deprecated code someday.
; Deprecated code should eventually be removed, but it should not break the current build.
dotnet_diagnostic.S1133.severity = suggestion

# S107: Methods should not have too many parameters
dotnet_diagnostic.S107.severity = warning

Expand Down