1

创建一个新的应用程序域,设置 assemblyResolve 处理程序,你总是会得到一个异常,说“未找到程序集 [当前正在执行的程序集]”

是什么赋予了 ?代码如下

string _fileName = @"c:\temp\abc123.dll";

AppDomain sandBox = AppDomain.CreateDomain("sandbox");

sandBox.AssemblyResolve += new ResolveEventHandler(sandBox_AssemblyResolve); 
// the line generates the exception !

System.Reflection.Assembly asm = sandBox.Load(System.Reflection.AssemblyName
                                     .GetAssemblyName(fileName).FullName);

foreach (System.Reflection.AssemblyName ar in asm.GetReferencedAssemblies())
    dbgWrite("Ref:  " + ar.FullName );


System.Reflection.Assembly sandBox_AssemblyResolve
  (object sender, ResolveEventArgs e)
{

    System.Reflection.Assembly asm = 
        System.Reflection.Assembly.LoadFrom(_fileName);
    return asm;

}

例外是:

System.IO.FileNotFoundException:无法加载文件或程序集“appAdmin,版本=1.0.0.0,文化=中性,PublicKeyToken=null”或其依赖项之一。该系统找不到指定的文件。文件名:'appAdmin,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null' [snip]

4

2 回答 2

1

您正在尝试加载不在 AppDomain 的基本位置下的程序集。我也从来没有让 AssemblyResolve 事件为我工作过。

我建议将您的基础程序集加载到一个字节数组(System.IO.File.ReadAllBytes)中,然后将该数组交给您新创建的 AppDomain 以加载

于 2009-08-24T14:18:38.383 回答
1

您的解析器可能不会在您的新 AppDomain 上触发,请尝试在 AppDomain.CurrentAppDomain 上设置它。

AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(sandBox_AssemblyResolve);

在 sandBox_AssemblyResolve 方法中,您可以从您喜欢的任何目录加载程序集,这就是来自 byte[] 的加载可能发挥作用的地方。

至于使用 byte[] 加载程序集,这修复了文件锁定问题,它不会解决你的问题,我认为这里看不到

于 2009-09-03T16:11:13.340 回答