From 037768f5319f493feb84f8eb85341d8aeaa6c109 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Wed, 9 Mar 2016 15:41:56 -0800 Subject: [PATCH] Common and PlatformAbstractions need to be built before Testing and in sequence --- makefile.shade | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/makefile.shade b/makefile.shade index 35ebb817b1..0176b1ab2e 100644 --- a/makefile.shade +++ b/makefile.shade @@ -980,6 +980,16 @@ functions { get { + if (string.Equals("PlatformAbstractions", Name, StringComparison.OrdinalIgnoreCase)) + { + return 0; + } + + if (string.Equals("Common", Name, StringComparison.OrdinalIgnoreCase)) + { + return 1; + } + if (string.Equals("Testing", Name, StringComparison.OrdinalIgnoreCase)) { // Testing has a cyclic dependency with Common, PlatformAbstractions and Logging.