9 lines
217 B
C#
9 lines
217 B
C#
using System;
|
|
|
|
namespace Prise.Activation
|
|
{
|
|
public interface IPluginActivationContextProvider
|
|
{
|
|
IPluginActivationContext ProvideActivationContext(Type remoteType, IAssemblyShim pluginAssembly);
|
|
}
|
|
} |