I have created a plugin in 2011 using the SDK Development Kit Plugin project and the CRM Package project to deploy the plugins.
The Plugin project, when one creates a plugin via the CRM Explorer, creates a class that inherits from Plugin.CS
In the class is a method created OOTB
protected void ExecuteMyPlugin(LocalPluginContext localContext)But when I try to access localContext.ServiceProvider the ServiceProvider object is always null
Why is this?
Maz