Description
The PluginAttribute currently allows the plugin type to be specified as a string, for example:
[assembly: log4net.Config.Plugin("log4net.Plugin.RemoteLoggingServerPlugin,log4net")]
it should be possible to specify this as a type, for example:
[assembly: log4net.Config.Plugin(typeof(log4net.Plugin.RemoteLoggingServerPlugin))]