Specify the publish feed in Universe makefile

This commit is contained in:
Pranav K 2016-10-14 15:06:05 -07:00
parent 6317ea30c6
commit b035e31dc7
1 changed files with 5 additions and 0 deletions

View File

@ -213,6 +213,11 @@ var buildTarget = "compile"
}
}
if (Environment.GetEnvironmentVariable("UNIVERSE_PUSH_TO_VOLATILE") == "true")
{
Environment.SetEnvironmentVariable("NUGET_PUBLISH_FEED", "https://dotnet.myget.org/F/aspnetcore-volatile-release/api/v2/package");
}
foreach (var batch in batchedRepos)
{
Parallel.ForEach(batch.ToArray(), new ParallelOptions { MaxDegreeOfParallelism = threads }, repo =>