如何将.NET库移动到子目录?

时间:2009-12-27 11:02:31

标签: c# .net

我想将我的应用程序使用的所有库(dll)放到一个子目录中(让'说出名为“lib”)。如何指示程序集加载程序在该特定目录中查找引用的程序集(该目录是存在主程序集的目录的子目录)?

我认为应该通过app.config中的某些设置来完成,对吧?

1 个答案:

答案 0 :(得分:21)

app.config中的

probing paths。借用MSDN的例子:

<configuration>
   <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <probing privatePath="bin;bin2\subbin;bin3"/>
      </assemblyBinding>
   </runtime>
</configuration>