DEV Community

Discussion on: .NET Core Dependency Injection: Everything You Ought To Know

Collapse
 
jonathanhiggs profile image
Jonathan Higgs

Is this ServiceProvider something they have added directly to .Net Core, or is it AspNetCore only?

Collapse
 
jamesmh profile image
James Hickey

Yes, the ServiceProvider / DI system is baked right into .NET Core.

I wrote an article about task scheduling in a .NET Core console app - if you're interested to see what DI in a console application might look like (which would be in the ConfigureServices method when using the HostBuilder.)