1

我正在为我的项目使用 Mono.Addins。这是我的代码:

static void Main()
     {
         string modulepath = String.Format("{0}\\{1}", Loader.GetCurrentDirectory(), "modules");
         AddinManager.Initialize(modulepath, modulepath);
         AddinManager.Registry.Update(null); //**Error in here**

    }

我收到一个错误:

显示名称为“Mono.Addins.CecilReflector”的程序集未能在 ID 为 2 的 AppDomain 的“加载”绑定上下文中加载。失败的原因是:System.IO.FileNotFoundException:无法加载文件或程序集“Mono” .Addins.CecilReflector, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' 或其依赖项之一。该系统找不到指定的文件。文件名:'Mono.Addins.CecilReflector,版本=0.6.0.0,文化=中性,PublicKeyToken=0738eb9f132ed756'

解决这个问题的任何想法。预先感谢。

4

1 回答 1

0

是的,我的问题通过将文件 Mono.Addins.CecilReflector 复制到应用程序路径来解决。谢谢伊皮。

于 2012-09-06T14:24:50.547 回答