9 lines
260 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Capnpc.Csharp.MsBuild.Generation
{
2019-09-05 21:59:25 +02:00
public interface ICapnpcCsharpGenerator
{
2019-09-05 21:59:25 +02:00
IEnumerable<string> GenerateFilesForProject(string projectPath, List<string> capnpFiles, string projectFolder);
}
}