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

9 lines
217 B
C#

using System;
namespace Prise.Activation
{
public interface IPluginActivationContextProvider
{
IPluginActivationContext ProvideActivationContext(Type remoteType, IAssemblyShim pluginAssembly);
}
}