Project Reference added to one of the projects in the same solution appears broken in another solution
- by CSharpLearner
I have couple of solutions.
In the first solution I have many projects. One of the project named 'A' has a project reference of another project 'B' of the same solution.
In second solution, the project 'A' is added but not the project 'B'.
Both the solutions build successfully.
However, in second solution, reference
of B added in the project A, appears
broken.
Why?
Now, in first solution, instead of adding Project reference of B into A, i simply add a 'file reference' of B's DLL (which is copied at the common output directory created for all the projects) into A. Now the reference appears broken in both the solution even though both the solutions are built successfully.
May I know what should I do when I
have such a scenario?