/src/LinFu.IoC/Configuration/Interfaces/IContainerPlugin.cs

http://github.com/philiplaureano/LinFu · C# · 12 lines · 8 code · 1 blank · 3 comment · 0 complexity · 5a8f968b874fd379fb0ba411d3cdca0f MD5 · raw file

  1. using LinFu.IoC.Interfaces;
  2. using LinFu.Reflection;
  3. namespace LinFu.IoC.Configuration.Interfaces
  4. {
  5. /// <summary>
  6. /// Represents an alias interface used for backward compatibility with LinFu IoC 1.0
  7. /// </summary>
  8. public interface IContainerPlugin : ILoaderPlugin<IServiceContainer>
  9. {
  10. }
  11. }