I tried Windsor 3.0 to find out if we can upgrade.
Next console application
var t = DateTime.Now; var container = new WindsorContainer(); Debug.WriteLine("Created in " + (DateTime.Now - t).TotalMilliseconds);
Gets 5421.875ms (sequentially above 5000ms) to create a WindsorContainer.
Any suggestions for reducing creation time?
source share