I am trying out Windsor 3.0 to see if we can upgrade.
The following console application
var t = DateTime.Now;
var container = new WindsorContainer();
Debug.WriteLine("Created in " + (DateTime.Now - t).TotalMilliseconds);
Takes 5421.875ms (consistently above 5000ms) to create the WindsorContainer.
Any suggestions to decrease this creation time?