Files
mixtape/zero.Core/Assemblies/IAssemblyDiscoveryRule.cs
T

14 lines
372 B
C#

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