1 write to RuntimeIdentifier
NuGet.Commands (1)
RestoreCommand\FrameworkRuntimeDefinition.cs (1)
24
RuntimeIdentifier
= runtimeIdentifier ?? string.Empty;
16 references to RuntimeIdentifier
NuGet.Commands (16)
RestoreCommand\DependencyGraphResolver.cs (10)
158
if (!string.IsNullOrWhiteSpace(frameworkRuntimeDefinition.
RuntimeIdentifier
) && !hasInstallBeenCalledAlready)
196
runtimeIdentifier: string.IsNullOrWhiteSpace(frameworkRuntimeDefinition.
RuntimeIdentifier
) ? null : frameworkRuntimeDefinition.
RuntimeIdentifier
,
233
if (!string.IsNullOrWhiteSpace(frameworkRuntimeDefinition.
RuntimeIdentifier
))
745
string.IsNullOrWhiteSpace(frameworkRuntimeDefinition.
RuntimeIdentifier
) ? null : frameworkRuntimeDefinition.
RuntimeIdentifier
,
1350
if (EvaluateRuntimeDependencies(ref childDependency, runtimeGraph, pair.
RuntimeIdentifier
, ref runtimeDependencies))
1390
runtimeIdentifier: string.IsNullOrWhiteSpace(pair.
RuntimeIdentifier
) ? null : pair.
RuntimeIdentifier
,
1431
if (string.IsNullOrEmpty(frameworkRuntimeDefinition.
RuntimeIdentifier
) || !graphsByTargetAlias.TryGetValue(frameworkRuntimeDefinition.TargetAlias, out RestoreTargetGraph? restoreTargetGraphForTargetFramework))
RestoreCommand\FrameworkRuntimeDefinition.cs (1)
35
RuntimeIdentifier
);
RestoreCommand\RestoreCommand.cs (5)
625
var restoreTargetGraph = RestoreTargetGraph.Create(_request.Project.RuntimeGraph, Enumerable.Empty<GraphNode<RemoteResolveResult>>(), contextForProject, frameworkRuntimePairs[i].TargetAlias, frameworkRuntimePairs[i].Framework, frameworkRuntimePairs[i].
RuntimeIdentifier
);
1868
if (string.IsNullOrEmpty(frameworkRuntimeDefinition.
RuntimeIdentifier
))
1872
frameworkRuntimePairs.Add(new FrameworkRuntimePair(frameworkRuntimeDefinition.Framework, frameworkRuntimeDefinition.
RuntimeIdentifier
));
1910
allGraphs.Add(RestoreTargetGraph.Create(_request.Project.RuntimeGraph, Enumerable.Empty<GraphNode<RemoteResolveResult>>(), context, frameworkRuntimePair.TargetAlias, frameworkRuntimePair.Framework, frameworkRuntimePair.
RuntimeIdentifier
));
2076
graphs.Add(RestoreTargetGraph.Create(_request.Project.RuntimeGraph, Enumerable.Empty<GraphNode<RemoteResolveResult>>(), context, frameworkRuntimePair.TargetAlias, frameworkRuntimePair.Framework, frameworkRuntimePair.
RuntimeIdentifier
));