Mark van Renswoude
133adf205c
- Implementation of assembly/nuget package selection UI - Actual example generation needs more work
20 lines
423 B
C#
20 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PettingZoo.Tapeti.AssemblyLoader
|
|
{
|
|
public interface IPackageAssemblies
|
|
{
|
|
Task<IEnumerable<IPackageAssembly>> GetAssemblies(IProgress<int> progress, CancellationToken cancellationToken);
|
|
}
|
|
|
|
|
|
public interface IPackageAssembly
|
|
{
|
|
Stream GetStream();
|
|
}
|
|
}
|