Files
mixtape/Finch/Assemblies/IAssemblyDiscoveryRule.cs
T
2026-04-07 14:23:29 +02:00

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);
}