Add project to project graph
This commit is contained in:
parent
ef0c3b2cee
commit
3e5b68dc43
14 changed files with 793 additions and 743 deletions
16
src/dotnet/commands/dotnet-build/CompilerIO.cs
Normal file
16
src/dotnet/commands/dotnet-build/CompilerIO.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue