Results 1 comments of Andrey Skobelev

@revolt3r Hello! I have managed to resolve instances with the following extension method: ``` public static class VContainerExtensions { public static T ResolveInstance(this IObjectResolver resolver) => (T)resolver.Resolve(new RegistrationBuilder(typeof(T), Lifetime.Transient).Build()); }...