Hi
just to smummarize so I understand it more :
° solution A has projects 1,2,3
° Soluion B has projects 10,11,12
and project 10 references the dll/exe of project 1
if this is so,
how is the solution structure?
source\solutionA\project1
source\solutionA\project2
source\solutionA\project3
source\solutionB\project10
source\solutionB\project11
source\solutionB\project12
so you must first compile solution A, before solution B can be compiled
or
App 1
source\solutionA\project1
source\solutionA\project2
source\solutionA\project3
App 2
lib
dll of project 1
source\solutionB\project10
source\solutionB\project11
source\solutionB\project12
solution B can be built simultaneously of solution A
although it will not automatically get the newest version of the dll of
project 1
with kind regards
Ruben Willems
On Thu, Jan 29, 2009 at 1:58 PM, Victor <[email protected]> wrote:
>
> > and these solutions are dependent?
> Yes. Typically solution Y depends to link against the lib produced by
> solution X.
>
> Additional to this linear dependencies (solution Y requires output of
> solution X) various projects also share some source files.
>
> > project A is in Solution X, does any project
> > in solution Y reference A or not
> With a single exception (which may get fixed), no projects are part of
> more than one solution.