/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
- using LinFu.IoC.Interfaces;
- using LinFu.Reflection;
- namespace LinFu.IoC.Configuration.Interfaces
- {
- /// <summary>
- /// Represents an alias interface used for backward compatibility with LinFu IoC 1.0
- /// </summary>
- public interface IContainerPlugin : ILoaderPlugin<IServiceContainer>
- {
- }
- }