5 writes to RuntimeIdentifierGraphPath
NuGet.Build.Tasks.Console (1)
MSBuildStaticGraphRestore.cs (1)
774RuntimeIdentifierGraphPath = msBuildProjectInstance.GetProperty(nameof(TargetFrameworkInformation.RuntimeIdentifierGraphPath)),
NuGet.Commands (2)
RestoreCommand\Utility\MSBuildRestoreUtility.cs (1)
490RuntimeIdentifierGraphPath = runtimeIdentifierGraphPath,
RestoreCommand\Utility\PackageSpecFactory.cs (1)
427RuntimeIdentifierGraphPath = msBuildProjectInstance.GetProperty(nameof(TargetFrameworkInformation.RuntimeIdentifierGraphPath)),
NuGet.ProjectModel (2)
JsonPackageSpecReader.Utf8JsonStreamReader.cs (1)
1532RuntimeIdentifierGraphPath = runtimeIdentifierGraphPath,
TargetFrameworkInformation.cs (1)
144RuntimeIdentifierGraphPath = cloneFrom.RuntimeIdentifierGraphPath;
10 references to RuntimeIdentifierGraphPath
NuGet.Build.Tasks.Console (1)
MSBuildStaticGraphRestore.cs (1)
774RuntimeIdentifierGraphPath = msBuildProjectInstance.GetProperty(nameof(TargetFrameworkInformation.RuntimeIdentifierGraphPath)),
NuGet.Commands (3)
RestoreCommand\DependencyGraphResolver.cs (1)
1438string? runtimeGraphPath = projectTargetFramework?.RuntimeIdentifierGraphPath;
RestoreCommand\ProjectRestoreCommand.cs (1)
118FirstOrDefault(e => NuGetFramework.Comparer.Equals(e.FrameworkName, graph.Framework))?.RuntimeIdentifierGraphPath;
RestoreCommand\Utility\PackageSpecFactory.cs (1)
427RuntimeIdentifierGraphPath = msBuildProjectInstance.GetProperty(nameof(TargetFrameworkInformation.RuntimeIdentifierGraphPath)),
NuGet.ProjectModel (6)
PackageSpecWriter.cs (1)
544SetValueIfNotNull(writer, "runtimeIdentifierGraphPath", framework.RuntimeIdentifierGraphPath);
TargetFrameworkInformation.cs (5)
144RuntimeIdentifierGraphPath = cloneFrom.RuntimeIdentifierGraphPath; 164if (RuntimeIdentifierGraphPath != null) 166hashCode.AddObject(PathUtility.GetStringComparerBasedOnOS().GetHashCode(RuntimeIdentifierGraphPath)); 200PathUtility.GetStringComparerBasedOnOS().Equals(RuntimeIdentifierGraphPath, other.RuntimeIdentifierGraphPath) &&