IAssemblyFinder.cs 495 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. using System.Reflection;
  3. namespace Abp.Reflection
  4. {
  5. /// <summary>
  6. /// This interface is used to get assemblies in the application.
  7. /// It may not return all assemblies, but those are related with modules.
  8. /// </summary>
  9. public interface IAssemblyFinder
  10. {
  11. /// <summary>
  12. /// Gets all assemblies.
  13. /// </summary>
  14. /// <returns>List of assemblies</returns>
  15. List<Assembly> GetAllAssemblies();
  16. }
  17. }