1 write to RuntimeIdentifier
NuGet.Frameworks (1)
FrameworkRuntimePair.cs (1)
24
RuntimeIdentifier
= runtimeIdentifier ?? string.Empty;
12 references to RuntimeIdentifier
NuGet.Commands (4)
RestoreCommand\CompatibilityIssue.cs (2)
234
foreach (var framework in AvailableFrameworkRuntimePairs.Select(e => FormatFramework(e.Framework, e.
RuntimeIdentifier
))
244
sb.Append(" " + FormatFramework(frp.Framework, frp.
RuntimeIdentifier
));
RestoreCommand\ProjectRestoreCommand.cs (2)
60
var runtimesByFramework = frameworkRuntimePairs.ToLookup(p => p.Framework, p => p.
RuntimeIdentifier
);
99
tfmRidPair => !string.IsNullOrEmpty(tfmRidPair.
RuntimeIdentifier
));
NuGet.Frameworks (6)
FrameworkRuntimePair.cs (6)
32
string.Equals(
RuntimeIdentifier
, other.
RuntimeIdentifier
, StringComparison.Ordinal);
42
return HashCodeCombiner.GetHashCode(Framework,
RuntimeIdentifier
);
51
RuntimeIdentifier
);
63
return string.Compare(
RuntimeIdentifier
, other.
RuntimeIdentifier
, StringComparison.Ordinal);
NuGet.Packaging (2)
RuntimeModel\JsonRuntimeFormat.cs (2)
156
writer.WriteNameValue(name, runtimes[0].
RuntimeIdentifier
);
160
writer.WriteNameArray(name, runtimes.Select(rt => rt.
RuntimeIdentifier
));