为了重新创建我的生产环境,我创建了以下文件夹结构:
c:\TEST\tested.dll c:\TEST\tested\tools.dll
使用以下 App.config 文件编译测试的.dll:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="tested"/>
</assemblyBinding>
</runtime>
</configuration>
据我所知,应用程序应该在子文件夹中查找它的工具文件。当我尝试启动工作站时,我仍然收到找不到文件的错误。
这里给出一些上下文是一个示例 test.dll 源:
namespace ConsoleApplication1
{
public static class Testable
{
public static tools.IToolAble usefultool = null;
public static void initialisation()
{
if (usefultool == null) usefultool = new UsefulTest()
}
}
public class UsefulTest : tools.IToolAble
{
}
}
和一个示例 tools.dll 源:
namespace tools
{
public interface IToolAble
{
}
}
崩溃的代码是我的测试代码,它的工作方式如下:
private CustomMock controller = new CustomMock();
public void TestFixtureSetUp()
{
controller.LoadFrom(@"c:\TEST\tested.dll");
//The next line crashes because tools assembly is needet but not found
controller.InvokeInitialisation();
}
我错过了什么?App.config 是否正确?
编辑:
下面的答案是正确的,只有在选择正确的 dll 后才能知道路径。所以其他团队必须new ResolveEventHandler
在加载之前添加一个。这是它的简化版本:
internal void AddResolveEventHandler(string assemblyname, string assemblylocation)
{
AppDomain.CurrentDomain.AssemblyResolve +=
new ResolveEventHandler(
(sender, args) =>
{
Assembly ret = null;
if (
new AssemblyName(args.Name).Name == assemblyname &&
File.Exists(assemblylocation))
{
ret = Assembly.LoadFrom(assemblylocation);
}
return ret;
}
);
}