Files
mixtape/zero.Core/Architecture/AssemblyDiscovery/IAssemblyDiscoveryRule.cs
T
2021-11-20 13:52:28 +01:00

12 lines
350 B
C#

using Microsoft.Extensions.DependencyModel;
namespace zero.Architecture;
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);
}