dotnet-installer/src/dotnet/CommandResolution/IProject.cs

12 lines
No EOL
241 B
C#

using System.Collections.Generic;
using NuGet.ProjectModel;
namespace Microsoft.DotNet.Cli.CommandResolution
{
internal interface IProject
{
LockFile GetLockFile();
IEnumerable<SingleProjectInfo> GetTools();
}
}