AddJsonFile adds YamlProvider
Closed this issue · 1 comments
gao-artur commented
The problem is here
https://github.com/nbarbettini/FlexibleConfiguration/blob/master/src/FlexibleConfiguration/ConfigurationBuilderProviderExtensions.cs#L50
public static IConfigurationBuilder AddJson(
this IConfigurationBuilder builder,
string json,
string root = null,
ILogger logger = null)
{
var provider = new YamlProvider(json, root, logger);
return builder.Add(provider);
}