@@ -25,8 +25,11 @@ public async Task Discover(string sessionId, string displayName, StaticHookMetho
2525 new LinePosition ( hookMethod . LineNumber , 0 ) ) ) ,
2626 new TestMethodIdentifierProperty
2727 (
28- hookMethod . Assembly . FullName ! , hookMethod . ClassType . Namespace ! ,
29- hookMethod . ClassType . Name , hookMethod . Name ,
28+ hookMethod . Assembly . FullName ! ,
29+ hookMethod . ClassType . Namespace ! ,
30+ hookMethod . ClassType . Name ,
31+ hookMethod . Name ,
32+ hookMethod . MethodInfo . GenericTypeCount ,
3033 hookMethod . MethodInfo . Parameters . Select ( x => x . Type . FullName ! ) . ToArray ( ) ,
3134 hookMethod . MethodInfo . ReturnType . FullName !
3235 )
@@ -71,8 +74,11 @@ private async Task PublishAsync(string sessionId, string displayName, StaticHook
7174 new TimingProperty ( new TimingInfo ( start , end , end - start ) ) ,
7275 new TestMethodIdentifierProperty
7376 (
74- hookMethod . Assembly . FullName ! , hookMethod . ClassType . Namespace ! ,
75- hookMethod . ClassType . Name , hookMethod . Name ,
77+ hookMethod . Assembly . FullName ! ,
78+ hookMethod . ClassType . Namespace ! ,
79+ hookMethod . ClassType . Name ,
80+ hookMethod . Name ,
81+ hookMethod . MethodInfo . GenericTypeCount ,
7682 hookMethod . MethodInfo . Parameters . Select ( x => x . Type . FullName ! ) . ToArray ( ) ,
7783 hookMethod . MethodInfo . ReturnType . FullName !
7884 ) ,
0 commit comments