如何检测 .NET 解决方案中程序集之间的循环引用?
您知道检测 .Net 程序集之间的循环引用的有效方法吗?
我想要检测/防止的情况是这样的:
- A 引用 B
- B 引用 C
- C 引用 A
Do you know of an effective way to detect circular references between .Net assemblies?
The situation I would like to detect/prevent is such as:
- A references B
- B references C
- C references A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NDepend 是检测代码中依赖循环的好工具。您可以尝试使用试用版,以确保它可以解决您遇到的特定问题。
您可以查看 Patrick Smacchia 的博客,了解有关如何使用 NDepend 以及如何检测和可视化的文章代码中的循环。
NDepend is a good tool to detect dependency cycles in your code. There is a trial version you can try out to make sure it handles the specific issue you are having.
You can check out Patrick Smacchia's blog for articles about how to use NDepend and how you can detect and visualize cycles in your code.