WCF 服务的 dll 的多个版本,公开了两个服务

发布于 2024-10-16 03:41:43 字数 167 浏览 0 评论 0原文

我在同一个解决方案中有 2 个 wcf 项目。两者都引用libraryX,但使用不同的版本。部署后,这两个服务位于同一文件夹中,并且具有相同的 bin 文件夹,因此我遇到两个 DLL 都被称为libraryX.dll 的问题。在内部,它们有不同的版本,所以我可以重命名其中一个的物理文件名吗?如果不是,最好的方法是什么?

I have 2 wcf projects in the same solution. both reference libraryX, but use different versions. when deployed, both services are in the same folder with the same bin folder, so I have an issue with both DLLs being called libraryX.dll. Internally, they have a different version, so can I just rename the physical filename of one? If not, what is the best approach?

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

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

发布评论

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

评论(1

不再让梦枯萎 2024-10-23 03:41:43

您可以尝试通过更改AppDomainSetup 上的PrivateBinPath 来设置当前AppDomain 的RelativeSearchPath。

http://msdn.microsoft.com/en-us/library/system .appdomain.aspx

并将旧的(或新的)程序集文件移动到应用程序库下的子文件夹中。

所以有这样的结构:
c:\myapp\bin [所有当前文件]
c:\myapp\bin\older [旧库]

在代码中:

AppDomain.CurentDomain.SetupInformation.PrivateBinPath = "older";

You can try setting the RelativeSearchPath for the current AppDomain by changing the PrivateBinPath on the AppDomainSetup.

http://msdn.microsoft.com/en-us/library/system.appdomain.aspx

And move the older (or newer) assembly file to a subfolder under your application base.

so have a structure like:
c:\myapp\bin [all curent files]
c:\myapp\bin\older [the older library]

In code:

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