dotnet-installer/src/dotnet/commands/dotnet-build/CompilerIO.cs

16 lines
359 B
C#
Raw Normal View History

2016-04-17 20:53:49 -07:00
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;
}
}
}