- Fixed stack ovewrflow from ServicesProvider (???).

This commit is contained in:
MapleWheels
2026-02-02 16:26:38 -05:00
committed by Maplewheels
parent 024b07d5f4
commit 36bed09bde
5 changed files with 24 additions and 24 deletions
@@ -22,7 +22,7 @@ public class ServicesProvider : IServicesProvider
EnablePropertyInjection = false
});
_serviceContainerInst.Register<IServicesProvider>((f) => this);
//_serviceContainerInst.Register<IServicesProvider>((f) => this);
}
public void RegisterServiceType<TSvcInterface, TService>(ServiceLifetime lifetime, ILifetime lifetimeInstance = null) where TSvcInterface : class, IService where TService : class, IService, TSvcInterface