I have tried to do the following:
public abstract class MyItemEventReceiverBase : SPItemEventReceiver
public class TestItemEventReceiver : MyItemEventReceiverBase
It builds without a problem, but visual studio gives a error when I switch to the WSP View. The error is as follow: "Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information." No further details regarding the actual issue.
So is it possible to create a base class that inherits from SPItemEventReceiver which can be used by ones custom list item event receiver classes?