Ninject.Web.AspNetCore icon indicating copy to clipboard operation
Ninject.Web.AspNetCore copied to clipboard

Integration for Ninject as a DI container in ASP.NET Core MVC projects

Results 2 Ninject.Web.AspNetCore issues
Sort by recently updated
recently updated
newest added

With .NET 8 a new interface was added that should(?) be implemented by service providers, the [IKeyedServiceProvider](https://learn.microsoft.com/en-us/dotnet/api/microsoft.extensions.dependencyinjection.ikeyedserviceprovider?view=dotnet-plat-ext-8.0) Explanations and documentation: - https://learn.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection?view=aspnetcore-8.0#keyed-services - https://andrewlock.net/exploring-the-dotnet-8-preview-keyed-services-dependency-injection-support/ - https://weblogs.asp.net/ricardoperes/net-8-dependency-injection-changes-keyed-services We should implement that...

With https://github.com/aspnet/Announcements/issues/526, Microsoft has deprecated the `WebHostBuilder`, `IWebHost`, and `WebHost` in favor of the newer `HostBuilder` and `WebApplication.CreateBuilder`. Since the configuration model of `Ninject.Web.AspNetCore` is currently very directly tied to...