Add project to project graph

This commit is contained in:
Pavel Krymets 2016-04-17 20:53:49 -07:00
parent ef0c3b2cee
commit 3e5b68dc43
14 changed files with 793 additions and 743 deletions

View file

@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Microsoft.DotNet.Tools.Build
{
public struct CompilerIO
{
public readonly List<string> Inputs;
public readonly List<string> Outputs;
public CompilerIO(List<string> inputs, List<string> outputs)
{
Inputs = inputs;
Outputs = outputs;
}
}
}