I have an ordinary Castle Windsor component registration command:
container.Register(Component.For<IEntity>()
.UsingFactoryMethod(() => new EntityFactory().CreateEntity()));
I need the XML configuration alternative in order to extend my UCommerce. I've tried to register it as described here but it doesn't work due to exception:
Could not convert string 'Castle.Facilities.FactorySupport.FactorySupportFacility, Castle.Facilities.FactorySupport' to a type. Assembly was not found. Make sure it was deployed and the name was not mistyped.`
Have anyone faced equal challenge?