The deadlock situation is craaaaazy

Fix
This commit is contained in:
Evil Factory
2026-01-19 21:20:04 -03:00
committed by Maplewheels
parent dda26df250
commit f1e1b9238d
4 changed files with 51 additions and 51 deletions
@@ -17,7 +17,10 @@ public class ServicesProvider : IServicesProvider
public ServicesProvider()
{
_serviceContainerInst = new ServiceContainer();
_serviceContainerInst = new ServiceContainer(new ContainerOptions()
{
EnablePropertyInjection = false
});
}
public void RegisterServiceType<TSvcInterface, TService>(ServiceLifetime lifetime, ILifetime lifetimeInstance = null) where TSvcInterface : class, IService where TService : class, IService, TSvcInterface