Skip to content

Commit aa95784

Browse files
committed
cleanup
1 parent 5def3f1 commit aa95784

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/NuGet.Core/NuGet.Commands/RestoreCommand/DependencyGraphResolver.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,6 @@ private bool TryGetRuntimeGraph(List<NuGetv3LocalRepository> localRepositories,
14471447
// Load the runtime graph for the project if one is specified
14481448
RuntimeGraph? projectProviderRuntimeGraph = string.IsNullOrWhiteSpace(runtimeGraphPath) ? default : ProjectRestoreCommand.GetRuntimeGraph(runtimeGraphPath, _logger);
14491449

1450-
// TODO NK - Double check this.
14511450
// Gets a merged runtime graph for the project and target framework
14521451
runtimeGraph = ProjectRestoreCommand.GetRuntimeGraph(restoreTargetGraphForTargetFramework, localRepositories, projectRuntimeGraph: projectProviderRuntimeGraph, _logger);
14531452

src/NuGet.Core/NuGet.ProjectModel/JsonPackageSpecReader.Utf8JsonStreamReader.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,8 +575,7 @@ private static IEnumerable<FrameworkRuntimePair> ReadCompatibilitySets(IReadOnly
575575

576576
foreach (string value in values)
577577
{
578-
// TODO NK
579-
yield return new FrameworkRuntimePair(framework.GetShortFolderName(), framework, value);
578+
yield return new FrameworkRuntimePair(string.Empty, framework, value);
580579
}
581580
}
582581

0 commit comments

Comments
 (0)