12 lines
349 B
C#
12 lines
349 B
C#
using Microsoft.Extensions.DependencyModel;
|
|
|
|
namespace Finch.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);
|
|
} |