Reverting repo list to topological order

This commit is contained in:
Pranav K 2014-08-05 16:00:11 -07:00
parent 30280ee54e
commit bacfb03a1e
1 changed files with 11 additions and 10 deletions

View File

@ -15,33 +15,34 @@ default TARGET_DIR='${Path.Combine(BASE_DIR, "artifacts", "build")}'
var useHttps='${UseHttps(BASE_DIR)}'
var gitHubUriPrefix='${useHttps ? "https://github.com/aspnet/" : "git@github.com:aspnet/"}'
var repos='${new[] {
// The repos list is topologically sorted based on build order
"Configuration",
"DataCommon",
"DataCommon.SQLite",
"DataProtection",
"DependencyInjection",
"Options",
"Logging",
"Testing",
"Diagnostics",
"EntityFramework",
"Entropy",
"FileSystem",
"Helios",
"Hosting",
"WebSocketAbstractions",
"HttpAbstractions",
"Hosting",
"Helios",
"Identity",
"KestrelHttpServer",
"Logging",
"Mvc",
"Options",
"Razor",
"Routing",
"Mvc",
"Scaffolding",
"Security",
"SignalR-Server",
"StaticFiles",
"Testing",
"WebListener",
"WebSocketAbstractions",
"WebSockets"
"KestrelHttpServer",
"WebSockets",
"Entropy",
}}'
@{