Repository: reef Updated Branches: refs/heads/master ed40479e1 -> 70ca4d92c
[REEF-1816] Upgrade nuget.exe to version 4.1. Latest version of nuget.exe is required in order download some recent packages such as the latest version of Newtonsoft.Json. JIRA: [REEF-1816](https://issues.apache.org/jira/browse/REEF-1816) Pull Request This closes #1319 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/70ca4d92 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/70ca4d92 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/70ca4d92 Branch: refs/heads/master Commit: 70ca4d92c118accf51bb73c69d94cf8a8878a614 Parents: ed40479 Author: Doug Service <[email protected]> Authored: Mon Jun 26 22:48:07 2017 +0000 Committer: Markus Weimer <[email protected]> Committed: Tue Jun 27 18:55:00 2017 -0700 ---------------------------------------------------------------------- lang/cs/.nuget/NuGet.targets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/70ca4d92/lang/cs/.nuget/NuGet.targets ---------------------------------------------------------------------- diff --git a/lang/cs/.nuget/NuGet.targets b/lang/cs/.nuget/NuGet.targets index f93a096..9f8518f 100644 --- a/lang/cs/.nuget/NuGet.targets +++ b/lang/cs/.nuget/NuGet.targets @@ -204,7 +204,7 @@ under the License. Log.LogMessage("Downloading latest version of NuGet.exe..."); WebClient webClient = new WebClient(); - webClient.DownloadFile("https://www.nuget.org/nuget.exe", OutputFilename); + webClient.DownloadFile("https://dist.nuget.org/win-x86-commandline/v4.1.0/nuget.exe", OutputFilename); return true; } @@ -216,4 +216,4 @@ under the License. </Code> </Task> </UsingTask> -</Project> \ No newline at end of file +</Project>
