We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 626e555 commit ebc2deeCopy full SHA for ebc2dee
1 file changed
src/Injection/Validating.cs
@@ -47,7 +47,7 @@ public static class Validating
47
// Select Method
48
foreach (var info in type.GetDeclaredMethods())
49
{
50
- if (!method.Data.MatchMemberInfo(info)) continue;
+ if (method.Name != info.Name || !method.Data.MatchMemberInfo(info)) continue;
51
52
if (null != selection)
53
0 commit comments