From af9fc38f2834cc4b8201b613174e601ba1872ffc Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sat, 14 Jan 2017 16:35:42 +0100 Subject: [PATCH] Build: follow up breaking NuGet changes --- 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 5fe000ad..da5ff035 100644 --- a/build/build-framework.fsx +++ b/build/build-framework.fsx @@ -312,7 +312,7 @@ let publishNuGet packageFiles = let rec impl trials file = trace ("NuGet Push: " + System.IO.Path.GetFileName(file) + ".") try - let args = sprintf "push \"%s\"" (FullName file) + let args = sprintf "push \"%s\" -Source https://www.nuget.org/api/v2/package" (FullName file) let result = ExecProcess (fun info -> info.FileName <- "packages/build/NuGet.CommandLine/tools/NuGet.exe"