48569427a5
Refactored code to consistently use `this.` for instance members, improving clarity and maintainability. Added XML documentation comments to multiple methods and properties for better API documentation. Streamlined `FfProbeKeyframeExtractor` logic and enhanced EBML parsing code with comments and style improvements. Introduced a new `.editorconfig` to disable legacy StyleCop and IDisposableAnalyzers rules. Updated binary files, assembly info, and NuGet cache files due to rebuilds and dependency changes. No functional changes were made.
28 lines
945 B
INI
28 lines
945 B
INI
# EditorConfig for MediaBrowser.Controller
|
|
# https://EditorConfig.org
|
|
|
|
root = true
|
|
|
|
[*.cs]
|
|
# Disable StyleCop rules that are not followed in this legacy project
|
|
dotnet_diagnostic.SA1101.severity = none
|
|
dotnet_diagnostic.SA1200.severity = none
|
|
dotnet_diagnostic.SA1202.severity = none
|
|
dotnet_diagnostic.SA1204.severity = none
|
|
dotnet_diagnostic.SA1309.severity = none
|
|
dotnet_diagnostic.SA1413.severity = none
|
|
dotnet_diagnostic.SA1515.severity = none
|
|
dotnet_diagnostic.SA1512.severity = none
|
|
dotnet_diagnostic.SA1600.severity = none
|
|
dotnet_diagnostic.SA1601.severity = none
|
|
dotnet_diagnostic.SA1602.severity = none
|
|
dotnet_diagnostic.SA1128.severity = none
|
|
dotnet_diagnostic.SA1009.severity = none
|
|
dotnet_diagnostic.SA1108.severity = none
|
|
|
|
# Disable IDisposableAnalyzers rules
|
|
dotnet_diagnostic.IDISP001.severity = none
|
|
dotnet_diagnostic.IDISP003.severity = none
|
|
dotnet_diagnostic.IDISP007.severity = none
|
|
dotnet_diagnostic.IDISP008.severity = none
|