Closed beppe9000 closed 6 years ago
Sorry, but this is not going to happen. The next major version will be implemented as a .NET Generic Host and will also use Span<T>
and pipelines
alright, we will adapt :)
This is the reason why I can't get var services = new IServiceCollection();
to work no matter what I do, isn't it? =/ Any news on this?
You cannot instantiate an IServiceCollection
, as it's just a non-COM interface. You need a ServiceCollection
class as provided by the Microsoft.Extensions.DependencyInjection
package or something that's compatible with it (e.g. AutoFac with support for the interfaces as defined in the Microsoft.Extensions.DependencyInjection.Abstractions
package.
pls allow to use without DI