WCF 服务的 dll 的多个版本,公开了两个服务
我在同一个解决方案中有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试通过更改AppDomainSetup 上的PrivateBinPath 来设置当前AppDomain 的RelativeSearchPath。
http://msdn.microsoft.com/en-us/library/system .appdomain.aspx
并将旧的(或新的)程序集文件移动到应用程序库下的子文件夹中。
所以有这样的结构:
c:\myapp\bin [所有当前文件]
c:\myapp\bin\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: