From 77ada164c60a87153e02b3556ef5b1137281e975 Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Tue, 27 Sep 2016 19:57:56 -0700 Subject: [PATCH] Forgot to actually invoke the method to clean PackageRefs. --- .../Rules/MigrateTFMRule.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateTFMRule.cs b/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateTFMRule.cs index 59db57adf..4a94c222a 100644 --- a/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateTFMRule.cs +++ b/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateTFMRule.cs @@ -28,6 +28,7 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules var propertyGroup = migrationRuleInputs.CommonPropertyGroup; CleanExistingProperties(csproj); + CleanExistingPackageReferences(csproj); _transformApplicator.Execute( FrameworksTransform.Transform(migrationRuleInputs.ProjectContexts.Select(p => p.TargetFramework)),