Visual Studio reciprocal reference
Is that 开发者_Python百科a problem if a solution contains many projects and there are some cases when:
- Project A references Project B
- Project B references Project A
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.
精彩评论