9 lines
311 B
C#
Raw Normal View History

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