When applied to a parameterless method, logging "method should have no parameters" error. Figured it's the bug in the condition of validation. In GraphicSourceSelector.cs, line 108:
private static bool IsSupportedParameters(Type[] parameterTypes)
{
return parameterTypes.Length != 0;
}
should be
return parameterTypes.Length == 0;
When applied to a parameterless method, logging "method should have no parameters" error. Figured it's the bug in the condition of validation. In
GraphicSourceSelector.cs, line 108:should be