1 write to FrameworkName
NuGet.ProjectModel (1)
CentralTransitiveDependencyGroup.cs (1)
25FrameworkName = framework.ToString();
7 references to FrameworkName
NuGet.Build.Tasks.Pack (1)
PackTaskLogic.cs (1)
1020if (centralTDG.FrameworkName.Equals(framework.FrameworkName.ToString(), StringComparison.OrdinalIgnoreCase))
NuGet.ProjectModel (6)
CentralTransitiveDependencyGroup.cs (3)
45if (string.Equals(FrameworkName, other.FrameworkName, StringComparison.OrdinalIgnoreCase)) 61combiner.AddStringIgnoreCase(FrameworkName);
LockFile\LockFile.cs (1)
75&& CentralTransitiveDependencyGroups.OrderedEquals(other.CentralTransitiveDependencyGroups, group => group.FrameworkName, StringComparer.OrdinalIgnoreCase);
LockFile\LockFileFormat.cs (2)
565foreach (var centralTransitiveDepGroup in centralTransitiveDependencyGroups.OrderBy(ptdg => ptdg.FrameworkName)) 567PackageSpecWriter.SetCentralTransitveDependencyGroup(writer, centralTransitiveDepGroup.FrameworkName, centralTransitiveDepGroup.TransitiveDependencies);