From ee73d3897c2c4c9a2b06313458f285c606d878e2 Mon Sep 17 00:00:00 2001 From: TomPallister Date: Sat, 11 Feb 2017 12:18:27 +0000 Subject: [PATCH 1/2] removed second publish of symols as we publish with the nuget package --- build.cake | 8 -------- 1 file changed, 8 deletions(-) diff --git a/build.cake b/build.cake index 1a1f005d..0dca21ec 100644 --- a/build.cake +++ b/build.cake @@ -318,14 +318,6 @@ private void PublishPackages(string feedApiKey, string codeFeedUrl, string symbo ApiKey = feedApiKey, Source = codeFeedUrl }); - - NuGetPush( - symbolsPackage, - new NuGetPushSettings { - ApiKey = feedApiKey, - Source = symbolFeedUrl - }); - } /// gets the resource from the specified url From 2757fe25eb3d23f678827c0fdc2adeb01347d7df Mon Sep 17 00:00:00 2001 From: TomPallister Date: Sat, 11 Feb 2017 12:29:07 +0000 Subject: [PATCH 2/2] made changes to only push nuget package for some reason still trying to push symbols again --- build.cake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.cake b/build.cake index 0dca21ec..93cf8428 100644 --- a/build.cake +++ b/build.cake @@ -310,7 +310,8 @@ private void PublishPackages(string feedApiKey, string codeFeedUrl, string symbo .ToDictionary(v => v[0], v => v[1]); var codePackage = packagesDir + File(artifacts["nuget"]); - var symbolsPackage = packagesDir + File(artifacts["nugetSymbols"]); + + Information("Pushing package"); NuGetPush( codePackage,