using System; using System.Collections.Generic; using System.Linq; using Abp.Modules; namespace Abp.PlugIns { public static class PlugInSourceExtensions { public static List GetModulesWithAllDependencies(this IPlugInSource plugInSource) { return plugInSource .GetModules() .SelectMany(AbpModule.FindDependedModuleTypesRecursivelyIncludingGivenModule) .Distinct() .ToList(); } } }