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

19 lines
536 B
C#
Raw Normal View History

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
2016-04-17 20:53:49 -07:00
using System.Collections.Generic;
namespace Microsoft.DotNet.Tools.Build
{
internal struct CompilerIO
2016-04-17 20:53:49 -07:00
{
public readonly List<string> Inputs;
public readonly List<string> Outputs;
public CompilerIO(List<string> inputs, List<string> outputs)
{
Inputs = inputs;
Outputs = outputs;
}
}
}