I have two dll modules. Module A and B. "A" call's function "B". And "B" calls function "A" to place result. "B" dependes from "A", "A" depends from "B". When i compiling (clean) project - i have a problem. (I have to remove module dependency - comment some lines - compiling "A" -then "B" then uncomment lines, add dependency and again compiling "A")
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
First of all, you really should try as hard as possible to not produce circular dependencies. There are a lot of ways around, and which one is best for you depends on the exact nature of your depedencies.
If you MUST have the circular dependencies, you will have to wade into the toolchain a bit deeper, starting here. In short, it is possible to create a stub Reference: circular dependencies between dlls with visual studio |
|||
|
|