StructureMap 2.6
After upgrading to the latest StructureMap version, 2.6, I needed to make a slight tweak to the registration code. The convention call changes from:
s.WithDefaultConventions();
Is now:
s.With(new DefaultConventionScanner());
Apart from that, it was just a drop in replacement. Obviously helps if you keep calls to the IoC tool to a minimum.
