Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2015-09-21 21:30:22 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2015-09-24 18:18:26 +0300
commit3b2029216ecc1ba6386d96e4b9aded2621a01323 (patch)
tree2da4b951491fc1ccbbb889cefab76957293ab92a
parent77972f864dec20ac5f40b44bfa686442f7db8976 (diff)
[XBuild] Ignoring paths of .csproj, .targets and .sln file paths so in case of missmatch between values in <ProjectReference> or .sln and actual file system continue matching project file path and project
-rw-r--r--mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/Engine.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/Engine.cs b/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/Engine.cs
index 8cd12c087d7..fe7150eee1c 100644
--- a/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/Engine.cs
+++ b/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/Engine.cs
@@ -93,7 +93,7 @@ namespace Microsoft.Build.BuildEngine {
{
this.binPath = binPath;
this.buildEnabled = true;
- this.projects = new Dictionary <string, Project> ();
+ this.projects = new Dictionary <string, Project> (StringComparer.OrdinalIgnoreCase);
this.eventSource = new EventSource ();
this.loggers = new List <ILogger> ();
this.buildStarted = false;