1 write to RuntimeIdentifier
NuGet.Packaging (1)
RuntimeModel\RuntimeDescription.cs (1)
52
RuntimeIdentifier
= runtimeIdentifier;
12 references to RuntimeIdentifier
NuGet.Packaging (12)
RuntimeModel\JsonRuntimeFormat.cs (2)
77
.OrderBy(runtime => runtime.
RuntimeIdentifier
, StringComparer.Ordinal);
106
writer.WriteObjectStart(data.
RuntimeIdentifier
);
RuntimeModel\RuntimeDescription.cs (7)
69
return string.Equals(other.
RuntimeIdentifier
,
RuntimeIdentifier
, StringComparison.Ordinal)
80
if (!string.Equals(left.
RuntimeIdentifier
, right.
RuntimeIdentifier
, StringComparison.Ordinal))
114
left.
RuntimeIdentifier
,
129
combiner.AddObject(
RuntimeIdentifier
);
138
return $"({
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)
59
runtimes.ToDictionary(r => r.
RuntimeIdentifier
),