We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4055df1 commit b595455Copy full SHA for b595455
src/Serilog.Settings.Configuration/Settings/Configuration/ConfigurationReader.cs
@@ -520,7 +520,7 @@ bool HasExtensionAttribute(MethodInfo m) =>
520
.Select(t => t.GetTypeInfo())
521
.Where(t => t.IsSealed && t.IsAbstract && !t.IsNested))
522
.SelectMany(t => t.DeclaredMethods)
523
- .Where(m => m.IsStatic && m.IsPublic && hasExtensionAttribute(m))
+ .Where(m => m.IsStatic && m.IsPublic && HasExtensionAttribute(m))
524
.Where(m => m.GetParameters()[0].ParameterType == configType)
525
.ToList();
526
}
0 commit comments