Is that a problem if a solution contains many projects and there are some cases when:
- Project A references Project B
- Project B references Project A
Is that a problem if a solution contains many projects and there are some cases when:
Yes, because the compiler won't know which one to compile first to satisfy the dependency. Consider pulling the common pieces out into Project C and having the two projects both depend on that.