I have what is probably a simple question here about Castle Windsor, which I haven\'t been using for very long. I\'m trying to register a service with a specific instance that w
Try using the AddComponentInstance method on the container's Kernel object. I think this is what you need.
Please note: This technique is now deprecated. Use container.Register(Component.For().Instance(myT)); instead (thanks to eouw0o83hf)
container.Register(Component.For().Instance(myT));