hadashiA / VContainer

The extra fast, minimum code size, GC-free DI (Dependency Injection) library running on Unity Game Engine.
https://vcontainer.hadashikick.jp
MIT License
1.81k stars 157 forks source link

VContainer for non-unity usage? #659

Closed man-chi closed 2 months ago

man-chi commented 3 months ago

is it suitable to use VContainer for non-unity propose, such as windows native or azure microservice application?

hadashiA commented 2 months ago

VContainer is quite Unity-specific in design and provides features that are closely related to Unity. So, outside of Unity, it would be better to use a generic DI library.

In the .NET environment, Microsoft.Extensions.DependencyInjection has taken root as the underlying technology. Currently, it is probably better to use this as the basis.

refs #639.