如何在MEF中设置PrivateBinPath?

这就是我想要做的:How to change the loading path of references in .NET?

最佳答案

您可以通过应用程序配置文件assemblyBinding元素,更准确地说-probing来完成此操作:

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

这将迫使运行时在binbin2bin2\subbinbin3目录中查找程序集,所有这些目录都是应用程序基本目录的子目录。

关于dll - 如何在MEF中设置PrivateBinPath?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/806467/

10-11 22:32