Inversion of Control
Registering custom dependencies
class DefaultInstaller : IDependenciesInstaller
{
public void Install(BootstrapConventions conventions, IServiceCollection services, IEnumerable<Type> assemblyScanningResults)
{
services.AddSingleton<MyType>();
}
}Last updated