I have to interdependent dll here that i would like to build without having to build them twice (force build both of them and rebuild them again to allow linking).
Here is an exemple :
**DLL A**
void fooA()
{
fooBB();
}
void fooAA()
{
fooB();
}
**DLL B**
void fooB()
{
fooA();
}
void fooBB()
{
}
Is there a way to build those two DLL without mayor refactoring?