Implemented interface member:
property
RuntimeIdentifier
NuGet.Commands.IRestoreTargetGraph.RuntimeIdentifier
1 write to RuntimeIdentifier
NuGet.Commands (1)
RestoreCommand\RestoreTargetGraph.cs (1)
79
RuntimeIdentifier
= runtimeIdentifier;
27 references to RuntimeIdentifier
NuGet.CommandLine.XPlat (1)
Commands\PackageReferenceCommands\AddPackageReferenceCommandRunner.cs (1)
243
restorePreviewResult.Result.CompatibilityCheckResults.Count(r => string.IsNullOrEmpty(r.Graph.
RuntimeIdentifier
)))
NuGet.Commands (26)
RestoreCommand\CompatibilityChecker.cs (7)
91
graph.
RuntimeIdentifier
,
132
graph.
RuntimeIdentifier
,
144
graph.
RuntimeIdentifier
);
154
if (_validateRuntimeAssets && !string.IsNullOrEmpty(graph.
RuntimeIdentifier
))
211
if (_validateRuntimeAssets && !string.IsNullOrEmpty(graph.
RuntimeIdentifier
))
219
graph.
RuntimeIdentifier
);
377
if (Equals(target.TargetFramework, graph.Framework) && (target.TargetAlias == null || Equals(target.TargetAlias, graph.TargetAlias)) && string.Equals(target.RuntimeIdentifier, graph.
RuntimeIdentifier
, StringComparison.Ordinal))
RestoreCommand\Diagnostics\DiagnosticUtility.cs (2)
68
if (string.IsNullOrEmpty(graph.
RuntimeIdentifier
))
74
return $"({graph.Framework.DotNetFrameworkName} RuntimeIdentifier: {graph.
RuntimeIdentifier
})";
RestoreCommand\LockFileBuilder.cs (6)
163
.ThenBy(graph => graph.
RuntimeIdentifier
, StringComparer.Ordinal))
171
RuntimeIdentifier = targetGraph.
RuntimeIdentifier
,
178
RuntimeIdentifier = targetGraph.
RuntimeIdentifier
,
441
&& string.IsNullOrEmpty(graph.
RuntimeIdentifier
)) :
444
&& string.IsNullOrEmpty(graph.
RuntimeIdentifier
));
489
foreach (RestoreTargetGraph targetGraph in targetGraphs.Where(targetGraph => string.IsNullOrEmpty(targetGraph.
RuntimeIdentifier
)))
RestoreCommand\LockFileBuilderCache.cs (3)
52
List<(List<SelectionCriteria> selectionCriterias, bool fallbackUsed)> result = _criteriaSets.GetOrAdd(key, _ => LockFileUtils.CreateOrderedCriteriaSets(graph.Conventions, framework, runtimeIdentifier: graph.
RuntimeIdentifier
));
73
return _criteriaSets.GetOrAdd(key, _ => LockFileUtils.CreateOrderedCriteriaSets(graph.Conventions, framework, runtimeIdentifier: graph.
RuntimeIdentifier
));
113
if (!string.IsNullOrEmpty(graph.
RuntimeIdentifier
))
RestoreCommand\Logging\TransitiveNoWarnUtils.cs (1)
46
if (string.IsNullOrEmpty(targetGraph.
RuntimeIdentifier
))
RestoreCommand\RestoreCommand.cs (2)
1968
graph.
RuntimeIdentifier
))
1975
graph.
RuntimeIdentifier
);
RestoreCommand\RestoreTargetGraph.cs (2)
84
TargetGraphName = string.IsNullOrEmpty(TargetAlias) ? FrameworkRuntimePair.GetTargetGraphName(Framework,
RuntimeIdentifier
) : GetTargetGraphName(TargetAlias,
RuntimeIdentifier
);
RestoreCommand\Utility\BuildAssetsUtils.cs (1)
502
if (string.IsNullOrEmpty(graph.
RuntimeIdentifier
) && ridlessTarget.TargetFramework == graph.Framework && ridlessTarget.TargetAlias == graph.TargetAlias)
RestoreCommand\Utility\LockFileUtils.cs (2)
71
var runtimeIdentifier = targetGraph.
RuntimeIdentifier
;
546
var orderedCriteria = CreateCriteria(targetGraph.Conventions, targetGraph.Framework, targetGraph.
RuntimeIdentifier
);