i'm trying to follow this example here
the only thing is i need to inject multiple hosted services instead of one like this
services.AddSimpleInjector(container, options =>
{
// Registers the hosted service as singleton in Simple Injector
// and hooks it onto the .NET Core Generic Host pipeline.
options.AddHostedService<TimedHostedService<IProcessor>>();
options.AddHostedService<MyHostedService<IProcessor>>();
});
the implementation of AddHostedService register one instance as singleton of IHostedService Interface I tried registering multiple implementations of IHostedService with services.TryAddEnumerable with no success any suggestions? Thanks
I'm unable to reproduce your issue. I used the following code in a Visual Studio 2022 ASP.NET Core MVC 6 project:
MyHostedService1
andMyHostedService2
are defined as follows:The Console output from the web application is the following:
From this I conclude that both hosted services are started, which means the problem you have is not reproducible with the code you posted.