/src/LinFu.IoC/Configuration/Loaders/AssemblyContainerLoader.cs

http://github.com/philiplaureano/LinFu · C# · 13 lines · 8 code · 1 blank · 4 comment · 0 complexity · c9c998d5fd7fcca17166826cf2e42156 MD5 · raw file

  1. using LinFu.IoC.Interfaces;
  2. using LinFu.Reflection;
  3. namespace LinFu.IoC.Configuration
  4. {
  5. /// <summary>
  6. /// Represents a class that loads configuration information
  7. /// from a given assembly.
  8. /// </summary>
  9. public class AssemblyContainerLoader : AssemblyTargetLoader<IServiceContainer>
  10. {
  11. }
  12. }