I have a project that had been using Castle 2.1 and rhino.esb (says 1.8.0.0). I'd like to use some features from the latest release of Castle Windsor, so I've removed all my references to Castle, log4net and rhino from the project, then used nuget to add them back with the latest releases.
Now I'm getting some errors indicating that OnewayRhinoServiceBusFacility and LoadBalancerFacility cannot be resolved. My project now lists references to:
Rhino.PersistentHashTable
Rhino.Queues
Rhino .ServiceBus
Rhino.ServiceBus.Castle
Rhino.ServiceBus.Host
The failing code sections are simple registrations like:
container.Kernel.AddFacility("video.loadbalancer", new LoadBalancerFacility());
Are these facilities no longer available? Or are they in some other package I have yet to reference?