Remove use of aspnetexternal feed

All our external dependencies come from NuGet.org now
This commit is contained in:
Pranav K 2016-08-09 15:18:19 -07:00 committed by GitHub
parent e815537907
commit a80ac8d02e
2 changed files with 1 additions and 4 deletions

View File

@ -44,7 +44,7 @@
{
var original = File.ReadAllText(nugetConfigPath);
var modified = original
.Replace("https://www.myget.org/F/aspnetcidev", "https://www.myget.org/F/aspnetcirelease");
.Replace("https://dotnet.myget.org/F/aspnetcore-ci-dev", "https://dotnet.myget.org/F/aspnetcore-ci-release");
if (!string.Equals(original, modified, StringComparison.Ordinal))
{

View File

@ -310,9 +310,6 @@ var buildTarget = "compile"
}
Environment.SetEnvironmentVariable("NUGET_VOLATILE_FEED_ASPNETVNEXT", Path.Combine(coherencePath, "packages-expanded"));
var externalFeed = string.Format("https://www.myget.org/f/aspnetexternal{0}/api/v3/index.json", buildBranch);
Environment.SetEnvironmentVariable("NUGET_VOLATILE_FEED_EXTERNAL", externalFeed);
}
#change-default-build-target-to-verify