What is necessary to have an extension method honored when it exists in an imported assembly? I built one in a class library project but it is not recognized in my web proj
You should be careful about method signature
public static ILoggingBuilder AddCustomizedLogging(this ILoggingBuilder builder, string appInsightsKey)
"this" modifier is required for extension methods