2 implementations of IDependencyGraphProject
NuGet.PackageManagement (2)
Projects\BuildIntegratedNuGetProject.cs (1)
26
,
IDependencyGraphProject
Projects\MSBuildNuGetProject.cs (1)
33
,
IDependencyGraphProject
5 references to IDependencyGraphProject
NuGet.PackageManagement (5)
BuildIntegration\DependencyGraphRestoreUtility.cs (3)
24
/// Supporting methods for restoring sets of projects that implement <see cref="
IDependencyGraphProject
"/>. This
225
public static async Task<PackageSpec> GetProjectSpec(
IDependencyGraphProject
project, DependencyGraphCacheContext context)
250
var projects = (await solutionManager.GetNuGetProjectsAsync()).OfType<
IDependencyGraphProject
>().ToList();
DependencyGraphCacheContext.cs (2)
43
public Dictionary<string, IReadOnlyList<
IDependencyGraphProject
>> DirectReferenceCache { get; set; } = new Dictionary<string, IReadOnlyList<
IDependencyGraphProject
>>(StringComparer.Ordinal);