2

为了重新创建我的生产环境,我创建了以下文件夹结构:

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;
            }
        );
    }
4

1 回答 1

0

test.dll 使用以下 App.config 文件编译

它必须是 yourapp.exe.config 文件,而不是 DLL 的 .config 文件。CLR 只查找与主进程关联的 .config 文件。

并注意 app.vshost.exe.config,在启用托管进程的情况下进行调试时需要它。

使用单元测试运行器时要小心,另一个 .exe 文件

请考虑这是否真的值得麻烦。您的用户不会关心 DLL 的位置。

于 2012-05-24T17:17:43.000 回答