Return file provider from out parameter instead of query from dictionary again
This commit is contained in:
Родитель
b5e0142e8b
Коммит
3c439e1386
|
@ -45,7 +45,7 @@ namespace Microsoft.Extensions.Configuration
|
|||
|
||||
if (builder.Properties.TryGetValue(FileProviderKey, out object provider))
|
||||
{
|
||||
return builder.Properties[FileProviderKey] as IFileProvider;
|
||||
return provider as IFileProvider;
|
||||
}
|
||||
|
||||
return new PhysicalFileProvider(AppContext.BaseDirectory ?? string.Empty);
|
||||
|
|
Загрузка…
Ссылка в новой задаче