如何在 MEF 中设置 PrivateBinPath?

发布于 2024-07-18 11:52:33 字数 179 浏览 1 评论 0原文

如何在 MEF 中设置 PrivateBinPath?

这就是我想做的:如何更改.NET中引用的加载路径?

How can I set PrivateBinPath in MEF?

This is what I'm trying to do : How to change the loading path of references in .NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温馨耳语 2024-07-25 11:52:33

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

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

这将强制运行时在 bin 中查找程序集bin2bin2\subbinbin3 目录,所有这些都是应用程序基目录的子目录。

You can do this through application config file: assemblyBinding element, more precisely - probing:

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

This will force runtime to look for assemblies in bin, bin2, bin2\subbin and bin3 directories, all of which are subdirectories of the application's base directory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文