mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
11 lines
303 B
C#
11 lines
303 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CapnpC.CSharp.MsBuild.Generation
|
|||
|
{
|
|||
|
public class CapnpGenJob
|
|||
|
{
|
|||
|
public string CapnpPath { get; set; }
|
|||
|
public string WorkingDirectory { get; set; }
|
|||
|
public List<string> AdditionalArguments { get; } = new List<string>();
|
|||
|
}
|
|||
|
}
|