using Autofac; namespace MfGames.ToolBuilder { /// /// The Autofac module to pull in the components inside this assembly. /// public class ToolBuilderModule : Module { /// protected override void Load(ContainerBuilder builder) { builder .RegisterAssemblyTypes(this.GetType().Assembly) .Except() .AsSelf() .AsImplementedInterfaces(); } } }