From e717011d9cf29968097f868065636adf9d05374a Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 18 Aug 2015 16:32:58 -0700 Subject: [PATCH] Fixup feeds used for branching. --- makefile.shade | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makefile.shade b/makefile.shade index e35158aabe..c5d23dbc39 100644 --- a/makefile.shade +++ b/makefile.shade @@ -163,7 +163,9 @@ var buildTarget = "compile" if (File.Exists(nugetConfigPath)) { var original = File.ReadAllText(nugetConfigPath); - var modified = original.Replace("https://www.myget.org/F/aspnetvnext", "https://www.myget.org/F/aspnetrelease"); + var modified = original + .Replace("https://www.myget.org/F/aspnetlitedev", "https://www.myget.org/F/aspnetliterelease") + .Replace("https://www.myget.org/F/azureadwebstacknightly", "https://www.myget.org/F/azureadwebstackrelease"); if (!string.Equals(original, modified, StringComparison.Ordinal)) {