Код: Выделить всё
public static IHostBuilder AddServices(this IHostBuilder host)
{
host.ConfigureServices((context, services) =>
{
var builder = new ConfigurationBuilder()
.AddUserSecrets() // I don't know if it is 'App' to use as the generic.
.Build();
var config = builder.GetSection(nameof(UserSecretModel));
services.Configure(config);
});
return host;
}
Подробнее здесь: https://stackoverflow.com/questions/784 ... ostbuilder