Autofac, upgrade to version 4.0.0 is missing ConfigurationSettingsReader
The latest documentation still refer's to the ConfigurationSettingsReader class which seems to be missing from the updated Autofac.Configuration assembly. How do get the equivalent of this code to function in version 4.0.0. I have this configuration: <section name="dependencies" type="Autofac.Configuration.SectionHandler, Autofac.Configuration" /> ... <dependencies> <modules> <module type="MyModule, MyAssembly.Service" /> </modules> </dependencies> and this code. // register the application overrides. container.RegisterModule(new ConfigurationSettingsReader("dependencies")); additionally, the