Skip to content

Commit f5b953a

Browse files
'nameof(T<>)' not supported yet.
1 parent 4502bc0 commit f5b953a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/ExternalAccess/Extensions/Internal/ExtensionMessageHandlerWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected ExtensionHandlerWrapper(object handler, Type customMessageHandlerInter
2626
ExtensionIdentifier = extensionIdentifier;
2727

2828
_executeAsyncMethod = customMessageHandlerInterface.GetMethod(nameof(ExecuteAsync));
29-
_responseTaskResultProperty = typeof(Task<>).MakeGenericType(ResponseType).GetProperty(nameof(Task<>.Result));
29+
_responseTaskResultProperty = typeof(Task<>).MakeGenericType(ResponseType).GetProperty(nameof(Task<int>.Result));
3030
}
3131

3232
public Type MessageType { get; }

0 commit comments

Comments
 (0)