From 1579f0a809ac0efd2a0585fb1376bd6e730104aa Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Tue, 19 Jan 2016 14:26:11 -0800 Subject: [PATCH 1/2] fix nuget reference --- src/dotnet-restore/project.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dotnet-restore/project.json b/src/dotnet-restore/project.json index e97943d2a..5c55f1a8b 100644 --- a/src/dotnet-restore/project.json +++ b/src/dotnet-restore/project.json @@ -12,6 +12,7 @@ }, "dependencies": { "NuGet.CommandLine.XPlat": "3.4.0-*", + "NuGet.Common": "3.4.0-*", "Microsoft.NETCore.Platforms": "1.0.1-rc2-23608", "NETStandard.Library": "1.0.0-rc2-23608", "System.Linq": "4.0.1-beta-23504", @@ -34,4 +35,4 @@ }, "scripts": { } -} \ No newline at end of file +} From bce4aacb1342469661baba0e0a9c8ad17363a42a Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Tue, 19 Jan 2016 14:49:14 -0800 Subject: [PATCH 2/2] work around NuGet packaging error --- src/dotnet-restore/project.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/dotnet-restore/project.json b/src/dotnet-restore/project.json index 5c55f1a8b..6cf30f4b3 100644 --- a/src/dotnet-restore/project.json +++ b/src/dotnet-restore/project.json @@ -11,8 +11,14 @@ "emitEntryPoint": true }, "dependencies": { - "NuGet.CommandLine.XPlat": "3.4.0-*", - "NuGet.Common": "3.4.0-*", + "NuGet.CommandLine.XPlat": "3.4.0-beta-*", + "NuGet.Common": "3.4.0-beta-*", + "NuGet.Frameworks": "3.4.0-beta-*", + "NuGet.Logging": "3.4.0-beta-*", + "NuGet.Packaging": "3.4.0-beta-*", + "NuGet.Packaging.Core": "3.4.0-beta-*", + "NuGet.Packaging.Core.Types": "3.4.0-beta-*", + "NuGet.Versioning": "3.4.0-beta-*", "Microsoft.NETCore.Platforms": "1.0.1-rc2-23608", "NETStandard.Library": "1.0.0-rc2-23608", "System.Linq": "4.0.1-beta-23504",