dotnet-installer/src/Microsoft.DotNet.Cli.Utils/CommandResolution/IProject.cs

21 lines
555 B
C#
Raw Normal View History

2016-10-05 11:51:59 -07:00
// 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.
using System.Collections.Generic;
using NuGet.ProjectModel;
namespace Microsoft.DotNet.Cli.Utils
{
internal interface IProject
{
LockFile GetLockFile();
IEnumerable<SingleProjectInfo> GetTools();
string DepsJsonPath { get; }
string RuntimeConfigJsonPath { get; }
Dictionary<string, string> EnvironmentVariables { get; }
}
}