Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit e309d8f

Browse files
committed
No, really, what's up with my brain today
1 parent 4199d06 commit e309d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Exports/Helpers/AssemblyResolver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ static Assembly LoadAssemblyFromRunDir(object sender, ResolveEventArgs e)
5252
{
5353
var requestedName = e.Name.TrimSuffix(".dll", StringComparison.OrdinalIgnoreCase);
5454
var name = new AssemblyName(requestedName).Name;
55-
if (!ourAssemblies.Contains(name, new LambdaComparer<string>((lhs, rhs) => String.Compare(lhs, rhs, StringComparison.OrdinalIgnoreCase))))
55+
if (!ourAssemblies.Contains(name, StringComparer.OrdinalIgnoreCase))
5656
return null;
5757
var path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
5858
var filename = Path.Combine(path, name + ".dll");

0 commit comments

Comments
 (0)