From 3d79f5bad60c56322f1284a3ea2164f2cf35431c Mon Sep 17 00:00:00 2001 From: Matt Ward Date: Mon, 22 Aug 2016 13:14:12 +0100 Subject: [Build] Restore NuGet packages using NuGet included with Mono Fixed bug #41521 - Cannot build from tarball due to .nuget folder not packaged https://bugzilla.xamarin.com/show_bug.cgi?id=41521 This reverts commit 6800701cf82a6597f25fdc3ff7b0822af31a97e0 which changed the makefile to use a later version of NuGet than was included with Mono since the restore was failing due to some of the NuGet packages using unknown target frameworks. Mono 4.4.2 and above now ship with NuGet 2.12 which is newer than the one currently at main/.nuget/NuGet.exe --- main/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/Makefile.am') diff --git a/main/Makefile.am b/main/Makefile.am index 47555b043b..3d6b070471 100644 --- a/main/Makefile.am +++ b/main/Makefile.am @@ -22,7 +22,7 @@ clean-local: sln_clean cd build && $(MAKE) clean restore-packages: - mono .nuget/NuGet.exe restore + nuget restore vcrevision: touch vcrevision -- cgit v1.2.3