DevTeam / Pure.DI

Pure DI for .NET
MIT License
410 stars 21 forks source link

do not support Service Dynamic loading from dll Library? #6

Closed sgf closed 2 years ago

sgf commented 2 years ago

do not support Service Dynamic loading from dll Library?

NikolayPianikov commented 2 years ago

All code are generating on the compile time, so the is no way to add any bindings on the runtime. But you could share some details of your scenario and I will try suggesting some ideas.

sgf commented 2 years ago

Dynamic loading is useful in some cases, we consider using dll hot loading in a project for a plugin system. But this project also is a great library, compile-time greatly improves performance.

NikolayPianikov commented 2 years ago

Yes, I agree, but you could load plugins by your "plugins manager".

Thank you :)