Is it possible to configure ASP.NET Core DI to resolve all classes? Something similar to Autofac AnyConcreteTypeNotAlreadyRegisteredSource functionality.
I'm able to use Autofac in ASP.NET Core, but I do not want to add additional library to my application, because ASP.NET Core already has DI.
So basically instead of:
services.AddTransient<MyService>();
services.AddTransient<MyAnotherService>();
I'd prefer to do something like:
services.ResolveAll();