替换一个 dll 时出现 .net dll 版本问题
我有以下问题。我创建了一个软件,在一个解决方案中包含多个项目。当我修复一个项目中的一个错误时,该错误不会改变函数的行为方式(例如,简单的字符串更改,或函数中的额外 try/catch 块),我必须重新编译并再次提供所有 dll,因为当我只提供了修改后的dll,版本不匹配。我知道这个问题是由于我的 dll 被强命名所致。但是有什么方法可以实现我可以只替换更改的 dll,同时提高版本号,而不更改和分发其他 dll?
I have the following problem. I created software, containing several projects in one solution. When I fix a bug in one of my projects which doesn't change how functions behave, (For example a simple string change, or an extra try/catch block within a function) I must recompile and provide all my dll's again, because when I only provide the changed dll, the version doesn't match. I understand that the problem is due to the fact that my dll's are strongly named. But is there any way to accomplish that I can just replace the changed dll, while the version number is raised, without changing and distributing the other dll's?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以同时拥有这两个 dll,并且可以使用 bindingRedirect,如下链接
dotnet 中的 dll 版本控制
You can have both dlls and can use bindingRedirect as in below link
dll versioning in dotnet