using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Prise.AssemblyScanning { public interface IAssemblyScanner : IDisposable { Task> Scan(IAssemblyScannerOptions options); } }