2019-09-05 21:59:25 +02:00

9 lines
260 B
C#

using System.Collections.Generic;
namespace Capnpc.Csharp.MsBuild.Generation
{
public interface ICapnpcCsharpGenerator
{
IEnumerable<string> GenerateFilesForProject(string projectPath, List<string> capnpFiles, string projectFolder);
}
}