pschelpdesk/Vendor/Prise.Plugin/PluginFactoryAttribute.cs
2024-11-04 20:45:34 +01:00

8 lines
366 B
C#

using System;
namespace Prise.Plugin
{
[Obsolete("Usage of a PluginFactory is obsolete, please use field injection instead. Existing plugins will continue to function as normal.", false)]
[System.AttributeUsage(System.AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public sealed class PluginFactoryAttribute : System.Attribute { }
}