I have gotten a task that contains creating a .Net 4.8 application that contains a "HttpSelfHostServer". I'm stuck in the quest of assigning "IServiceCollection services" to config.DependencyResolver (of type System.Web.Http.Dependencies.IDependencyResolver)
I would really like not to use autofac or other frameworks, but all guids I can find are pointing toward these frameworks. Isn't Microsoft providing a way through?
I just had to solve the same issue. This is how i did it:
First I created a new facade class to map the
IServiceCollection
from the host builder to the interfaceHttpSelfHostConfiguration
supports:This required me to get the latest NuGet package
Microsoft.Extensions.DependencyInjection.Abstractions
according to an answer here: How do I see all services that a .NET IServiceProvider can provide?I then registered my
HttpSelfHostServer
in the service provider with this code:And finally, to find my ApiController, I had to register that too in the service provider. I did that simply with:
For brewity, I'm just including my api controller below to illustrate how it now gets its dependencies:
This is a pretty dumb-down implementation but works for me until I can upgrade this code to net5.
I hope it helps you too!