Akka.DependencyInjection and Previous IWindsorInstaller Registrations #6098
-
Hi, I am replacing Akka.DI.Core and Akka.DI.CastleWindsor by Akka.DependencyInjection in a project.
By removing Akka.DI.Core and Akka.DI.CastleWindsor I lost all previous IWindsorInstalller registrations since now I have to use Microsoft.Extensions.DependencyInjection to register the dependencies for the Actors like below:
Question: Is it possible to reuse the IWindsorInstaller registrations? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I'm not experienced with Castle Windsor, but I know they maintain an adapter for working with Microsoft.Extensions.DependencyInjection here: https://www.nuget.org/packages/Castle.Windsor.Extensions.DependencyInjection/ - maybe that will let you re-use your old |
Beta Was this translation helpful? Give feedback.
-
Thanks Aaron it worked!
Em sáb., 17 de set. de 2022 às 14:35, Aaron Stannard <
***@***.***> escreveu:
… @marcoshass <https://github.com/marcoshass> was this able to help you?
—
Reply to this email directly, view it on GitHub
<#6098 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZO3X4P7R37SLKJO5YX4FDV6X6MZANCNFSM6AAAAAAQMNLIWY>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
I'm not experienced with Castle Windsor, but I know they maintain an adapter for working with Microsoft.Extensions.DependencyInjection here: https://www.nuget.org/packages/Castle.Windsor.Extensions.DependencyInjection/ - maybe that will let you re-use your old
IWindsorInstaller
instances?