1 write to RuntimeIdentifier
NuGet.Packaging (1)
RuntimeModel\RuntimeDescription.cs (1)
52RuntimeIdentifier = runtimeIdentifier;
12 references to RuntimeIdentifier
NuGet.Packaging (12)
RuntimeModel\JsonRuntimeFormat.cs (2)
77.OrderBy(runtime => runtime.RuntimeIdentifier, StringComparer.Ordinal); 106writer.WriteObjectStart(data.RuntimeIdentifier);
RuntimeModel\RuntimeDescription.cs (7)
69return string.Equals(other.RuntimeIdentifier, RuntimeIdentifier, StringComparison.Ordinal) 80if (!string.Equals(left.RuntimeIdentifier, right.RuntimeIdentifier, StringComparison.Ordinal)) 114left.RuntimeIdentifier, 129combiner.AddObject(RuntimeIdentifier); 138return $"({RuntimeIdentifier}: (#imports: {string.Join(",", InheritedRuntimes)}); {string.Join(",", RuntimeDependencySets)})";
RuntimeModel\RuntimeGraph.cs (3)
33/// Gets a map of <see cref="RuntimeDescription"/> keyed by <see cref="RuntimeDescription.RuntimeIdentifier"/>. 48: this(runtimes.ToDictionary(r => r.RuntimeIdentifier), EmptySupports) 59runtimes.ToDictionary(r => r.RuntimeIdentifier),