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