Reputation: 532
In my VS2010 WebSite Project, when I look at the references in the project properties, I see 3 types
But in my WinForm app's project references table I don't see column referring to reference "type." Instead, I see a "Copy Local" column header. Yet, when I set references from w/in my WinForm app, I can select a Project or a binary reference.
Why doesn't the WinForm property reference table display a Type column as does my WebSite properties References grid?
Upvotes: 2
Views: 985
Reputation: 11
VS isn't good at displaying the reference type in the gui, you cannot trust what is shows. The approach I'm using to be 100% sure is:
Upvotes: 1
Reputation: 2156
Not 100% sure why, but you can find out if you open up the object browser. That will tell you what type of reference it is (file, project, GAC).
Upvotes: 0