Mike Cheel
Mike Cheel

Reputation: 13106

VS2010 - Project References

I am currently going through and updating references in projects as their locations have changed.

Is there any way to discern by looking at the properties dialog (or some other convenient place) which references are project references and which are binary? I have been having to go to Add References and check there to see what is referenced but it's a pain when dealing with a a lof of projects.

Upvotes: 1

Views: 131

Answers (1)

Kevin Crowell
Kevin Crowell

Reputation: 10140

If it is a project, in the properties window, it will not contain a "Specific Version" property. This is the case since a project reference is always controlled by the version of the project being referenced. It just automatically updates as the referenced project updates.

Otherwise, you could open up the raw text of the .csproj files and navigate to the reference section of the file.

Upvotes: 2

Related Questions