We have been using simpleinjector for a long time in our solutions. A lot of code has been build on this.
Currently we are working on replacing our servicebus solution with a new one based on NServiceBus. Unfortunately this means we need to use Microsoft DI for these parts instead of SimpleInjector.
Crosswire solves one problem, namely the duplicate registration. Everything from M DI is usable from SimpleInjector.
But we are searching for a solution the other way around. As NServiceBus lives on the M DI, it's handlers can only use the entities registered in that container. Crosswire from M DI into SimpleInjector will help us a lot in not having to rewrite all our existing handlers.
We have been using simpleinjector for a long time in our solutions. A lot of code has been build on this. Currently we are working on replacing our servicebus solution with a new one based on NServiceBus. Unfortunately this means we need to use Microsoft DI for these parts instead of SimpleInjector.
Crosswire solves one problem, namely the duplicate registration. Everything from M DI is usable from SimpleInjector.
But we are searching for a solution the other way around. As NServiceBus lives on the M DI, it's handlers can only use the entities registered in that container. Crosswire from M DI into SimpleInjector will help us a lot in not having to rewrite all our existing handlers.
I hope someone might have a solution on this.