Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Fix #15
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrunwald committed Feb 24, 2012
1 parent 944ba9c commit d47cb9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ICSharpCode.NRefactory.CSharp/CSharpProjectContent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public CSharpProjectContent()
protected CSharpProjectContent(CSharpProjectContent pc)
{
this.assemblyName = pc.assemblyName;
this.parsedFiles = new Dictionary<string, IParsedFile>(pc.parsedFiles);
this.parsedFiles = new Dictionary<string, IParsedFile>(pc.parsedFiles, Platform.FileNameComparer);
this.assemblyReferences = new List<IAssemblyReference>(pc.assemblyReferences);
}

Expand Down

0 comments on commit d47cb9d

Please sign in to comment.