mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +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