Skip to content

Commit 66951b2

Browse files
committed
more cleanup
1 parent 198bee1 commit 66951b2

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public async Task<ValueTuple<bool, List<RestoreTargetGraph>, RuntimeGraph>> Reso
281281
foreach (FrameworkRuntimePair? frameworkRuntimePair in compatProfile.RestoreContexts)
282282
{
283283
_logger.LogDebug($" {profile.Value.Name} -> +{frameworkRuntimePair}");
284-
_request.CompatibilityProfiles.Add(frameworkRuntimePair); // TODO NK - double chekc.
284+
_request.CompatibilityProfiles.Add(frameworkRuntimePair);
285285
}
286286
}
287287

src/NuGet.Core/NuGet.Packaging/RuntimeModel/JsonRuntimeFormat.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ private static IEnumerable<FrameworkRuntimePair> ReadCompatibilitySets(KeyValueP
181181
var framework = NuGetFramework.Parse(property.Key);
182182
switch (property.Value.Type)
183183
{
184-
// TODO NK
185184
case JTokenType.Array:
186185
foreach (var value in (JArray)property.Value)
187186
{

0 commit comments

Comments
 (0)