From 7eacffdce87678513a3d52748b6cede9aed5010f Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Wed, 14 Feb 2018 21:11:11 +0100 Subject: [PATCH] Build: increase the NuGet push timeout to 15min (5min was too short for nativer providers) --- build/build-framework.fsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build-framework.fsx b/build/build-framework.fsx index bd716cb7..6befc537 100644 --- a/build/build-framework.fsx +++ b/build/build-framework.fsx @@ -365,7 +365,7 @@ let publishNuGet packageFiles = let rec impl trials file = trace ("NuGet Push: " + System.IO.Path.GetFileName(file) + ".") try - let args = sprintf """push "%s" -Source https://api.nuget.org/v3/index.json""" (FullName file) + let args = sprintf """push "%s" -Source https://api.nuget.org/v3/index.json -T 900""" (FullName file) let result = ExecProcess (fun info -> info.FileName <- "packages/build/NuGet.CommandLine/tools/NuGet.exe"