using Microsoft.Extensions.DependencyModel; namespace zero.Core.Assemblies { public interface IAssemblyDiscoveryRule { /// /// Returns true if the specified runtime library should be added to /// the ApplicationPartManager; otherwise false. /// bool IsValid(RuntimeLibrary library, AssemblyDiscoveryContext context); } }