Merge pull request #14005 from abpframework/liangshiwei/bundle

Ignore the case when adding file
pull/14019/head
liangshiwei 3 years ago committed by GitHub
commit 55b9a5e78c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,7 +16,7 @@ public class BundleFileContributor : BundleContributor
{
foreach (var file in Files)
{
context.Files.AddIfNotContains(file);
context.Files.AddIfNotContains(x => x.Equals(file, StringComparison.OrdinalIgnoreCase), () => file);
}
}
}

Loading…
Cancel
Save