Common and PlatformAbstractions need to be built before Testing and in sequence
This commit is contained in:
parent
5a2df72575
commit
037768f531
|
|
@ -980,6 +980,16 @@ functions
|
||||||
{
|
{
|
||||||
get
|
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))
|
if (string.Equals("Testing", Name, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
// Testing has a cyclic dependency with Common, PlatformAbstractions and Logging.
|
// Testing has a cyclic dependency with Common, PlatformAbstractions and Logging.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue