mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Virtual paths are case insensitive.
--HG-- branch : 1.x
This commit is contained in:
@@ -184,7 +184,7 @@ namespace Orchard.Environment.Extensions.Loaders {
|
||||
}
|
||||
|
||||
protected IEnumerable<string> GetDependencies(string projectPath) {
|
||||
var dependencies = new HashSet<string> { projectPath };
|
||||
var dependencies = new HashSet<string>(StringComparer.OrdinalIgnoreCase) { projectPath };
|
||||
|
||||
AddDependencies(projectPath, dependencies);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user