From bacfb03a1ed4aca9ef9fc2ee0513144db2b6124a Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 5 Aug 2014 16:00:11 -0700 Subject: [PATCH] Reverting repo list to topological order --- makefile.shade | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/makefile.shade b/makefile.shade index e56e6ec9c0..9c610e0766 100644 --- a/makefile.shade +++ b/makefile.shade @@ -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", }}' @{