Did Visual Studio 2010 break Project Dependencies between C ++ projects?

In Visual Studio 2008, if I had a solution containing several C ++ projects, I could make them depend on each other and refer correctly using the "Project Dependencies" option. This fixed the assembly order, and also made (for example) the main link of the project project to the outputs of the static library.

In Visual Studio 2010, this does not work. Has Visual Studio 2010 changed the way this works?

+12
visual-studio-2010
Apr 24 '10 at 13:18
source share
1 answer

Yes. You also need to add a link to a project that depends on it. This is not only for C ++ (or C ++ / CLI) managed applications.

The Team Visual C ++ blog post has this entry: Flexible links to a project project .

+13
Apr 24 '10 at 13:19
source share



All Articles