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