/src/LinFu.IoC/Configuration/Attributes/PreprocessorAttribute.cs

http://github.com/philiplaureano/LinFu · C# · 15 lines · 9 code · 1 blank · 5 comment · 0 complexity · a3141374e61e2ed2c9d44473b4293889 MD5 · raw file

  1. using System;
  2. using LinFu.IoC.Interfaces;
  3. namespace LinFu.IoC.Configuration
  4. {
  5. /// <summary>
  6. /// Marks a target type as an <see cref="IPreProcessor" />
  7. /// instance that can be injected into a
  8. /// <see cref="IServiceContainer" /> instance.
  9. /// </summary>
  10. [AttributeUsage(AttributeTargets.Class)]
  11. public class PreprocessorAttribute : Attribute
  12. {
  13. }
  14. }