我尝试了很多谷歌搜索,但未能找到解决方案。
请帮我解决。
我有一个 Windows 应用程序设置向导,它将运行一个安装程序类,其中分配了自定义操作。
该项目具有插件架构。
安装时,我需要安装打印机驱动程序,安装程序类有代码来安装它,通过调用该插件。
但是,当我尝试检索加载的插件的 GetTypes() 属性时,我收到一个加载器异常错误,安装程序将退出。
如果我运行我的 Windows 应用程序,则 GetTypes() 属性工作正常。
这是我的代码。请查看并检查是否有任何问题。
private static List<Assembly> LoadPlugInAssemblies()
{
DirectoryInfo dInfo = new DirectoryInfo(Path.Combine(Assembly.GetExecutingAssembly().Location.Replace("PluginSDK.dll", ""), "Plugins"));
FileInfo[] files = dInfo.GetFiles("*.dll");
List<Assembly> plugInAssemblyList = new List<Assembly>();
if (null != files)
{
foreach (FileInfo file in files)
{
plugInAssemblyList.Add(Assembly.LoadFile(file.FullName));
}
}
return plugInAssemblyList;
}
static List<IUserFunctionPlugin> GetPlugIns(List<Assembly> assemblies)
{
List<Type> availableTypes = new List<Type>();
foreach (Assembly currentAssembly in assemblies)
availableTypes.AddRange(currentAssembly.GetTypes());
List<Type> pluginList = availableTypes.FindAll(delegate(Type t)
{
List<Type> interfaceTypes = new List<Type>(t.GetInterfaces());
object[] arr = t.GetCustomAttributes(typeof(PluginAttributes), true);
return !(arr == null || arr.Length == 0) && interfaceTypes.Contains(typeof(IUserFunctionPlugin));
});
// CONVERT THE LIST OF OBJECTS TO AN INSTANTIATED LIST OF IPlugins
return pluginList.ConvertAll<IUserFunctionPlugin>(delegate(Type t) { return Activator.CreateInstance(t) as IUserFunctionPlugin; });
}
我尝试使用 Assembly.ReflectionOnlyLoad 但导致同样的错误。提前致谢!!!