How to completely disable Autofac components
This week I started working with the Autofac Inversion of Control container at the Day Job. The first project I tried to introduce Autofac to needed a plugin system. I figured this was a perfect use of Autofac's implicit relationship handlers. Sure enough, a
container.Resolve<IEnumerable<IPlugin>>()
did the …