Constructor ActionHandlerAttribute(string id) obsolete
Hello Resharper team,
The ActionHandlerAttribute(string id) is obsolete. Comments are telling me that you have to rename your class to '*ActionHandler' and than it should work.
Unfortunatelly when I do so, my plugin doesn't get registered because it can't find the action handler.
Can you guys explain what I've to do with these action handlers so that they work correctly?
Thanks
Please sign in to leave a comment.
On top of this, I've tried to do:
[ActionHandler]
public class FooActionHandler : IActionHandler
{
//some code
}
Won't register either.