0
2
NRNaser Rafinia
The ConfigureServices method adds a service collection to the service container. The Add method accepts an IConfiguration object as a parameter and defines what layer the service will be added to. The configuration can be either an application or an environment configuration.
Shortcut: conf.services
Filename pattern: *.cs
public static class ConfigureServices
{
public static IServiceCollection Add$1$Services(this IServiceCollection services, IConfiguration configuration)
{
return services;
}
}