Common and PlatformAbstractions need to be built before Testing and in sequence

This commit is contained in:
Pranav K 2016-03-09 15:41:56 -08:00
parent 5a2df72575
commit 037768f531
1 changed files with 10 additions and 0 deletions

View File

@ -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.