mlessard-appcom
mlessard-appcom
I use Autofac as the default service provider, not Windsor, and I have the same problem (resolving a different type though): Multiple constructors accepting all given argument types have been...
Looks like this is due to a breaking change in .NET 8 that Finbuckle did not account for? See: https://github.com/dotnet/runtime/issues/94736 https://learn.microsoft.com/en-us/dotnet/core/compatibility/extensions/8.0/activatorutilities-createinstance-behavior
Hello, My problem was fixed by simply updating to a more recent version of Autofac (more specifically Autofac.Extensions.DependencyInjection). Third-party service providers need to implement the new interface IServiceProviderIsService, otherwise having...
@AlexanderKot I don't use Windsor and I'm just guessing here, but you should be able to make this work like before by simply creating your own implementation of IServiceProviderIsService and...