using System; using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; namespace Volo.Abp.Modularity.PlugIns { public class PlugInSourceList : List { [NotNull] internal Type[] GetAllModules() { return this .SelectMany(pluginSource => pluginSource.GetModulesWithAllDependencies()) .Distinct() .ToArray(); } } }