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