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 9e98413 commit 4055df1Copy full SHA for 4055df1
src/Serilog.Settings.Configuration/Settings/Configuration/ConfigurationReader.cs
@@ -512,7 +512,7 @@ static IList<MethodInfo> FindEventEnricherConfigurationMethods(IReadOnlyCollecti
512
static List<MethodInfo> FindConfigurationExtensionMethods(IReadOnlyCollection<Assembly> configurationAssemblies, Type configType)
513
{
514
// ExtensionAttribute can be polyfilled to support extension methods
515
- bool hasExtensionAttribute(MethodInfo m) =>
+ bool HasExtensionAttribute(MethodInfo m) =>
516
m.CustomAttributes.Any(a => a.AttributeType.FullName == "System.Runtime.CompilerServices.ExtensionAttribute");
517
518
return configurationAssemblies
0 commit comments