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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.