From 894a1d7edb157eb6f1cd1df6e25bc093c653ddc3 Mon Sep 17 00:00:00 2001 From: Kostadin Date: Fri, 4 Sep 2015 15:34:33 +0300 Subject: [PATCH] Patch for issue #81 Issue 81: https://github.com/Microsoft/msbuild/issues/81 --- src/XMakeBuildEngine/UnitTests/BackEnd/TaskItemComparer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XMakeBuildEngine/UnitTests/BackEnd/TaskItemComparer.cs b/src/XMakeBuildEngine/UnitTests/BackEnd/TaskItemComparer.cs index aa7aeb3f9d6..c37b64f4172 100644 --- a/src/XMakeBuildEngine/UnitTests/BackEnd/TaskItemComparer.cs +++ b/src/XMakeBuildEngine/UnitTests/BackEnd/TaskItemComparer.cs @@ -48,7 +48,7 @@ public int Compare(ITaskItem x, ITaskItem y) return -1; } - if (x.CloneCustomMetadata().Count != x.CloneCustomMetadata().Count) + if (x.CloneCustomMetadata().Count != y.CloneCustomMetadata().Count) { return -1; }