views:

23

answers:

1

Hi All

I have a big project I am working on right now using Visual Studio 2008. The solutions is composed by several project in Visual C# and Visual C++.

Clicking on a project node , and selecting from the manu the item "Project Dependencies" I can find the list of dependencies I want to export.

Do you know a way to export this list on a file someway?

Thanks EO

+1  A: 

They are already stored in the Visual Studio Solution file. With some post-processing, you could copy them from there and write them to another file.

You can also use the EnvDTE.BuildDependency class to retrieve the dependencies programmatically.

Peladao
Thanks! I am going to test it right away!Ciao