-1

I am trying to get a legacy project to compile, but failing so far ignominiously, as can be seen rot cheer and over yonder.

In an attempt to track down just what the problem is, I want to see which References the project is using. There is no "References" folder in the Solution Explorer (and no "Show All Files" button).

When I select Website > Add Reference..., the Solution.Projects pane of the Reference Manager shows me "No items found." Shouldn't this be where the References used by the Solution are displayed?

If I select Assemblies.Framework or Assemblies.Extensions there, I do see a ginormous list of DLs, with some of them checked, but not those that I have tried to add to the project. I can see these when I expand the Browse.Recent section, and see there in the pane the DLLs that I have tried to add checked:

enter image description here

Does this mean that these references are included in the project, as I want them to be? Why isn't there a place that will show me all the references used by the project/website? Or is there, and I'm not seeing it?

UPDATE

Here is what I see when I right-click the project:

enter image description here

Community
  • 1
  • 1
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862

2 Answers2

1

if there are no References in the Solution Explorer tree then you can right click on the project name and then select Properties.

Now you should now see all the references. There should be a section called exactly that, References. I've seen that happen with older projects, done in VB.Net.

More details.

The Properties you see depend on what type of project it is as well. If this is applicable, try to avoid opening the project as a website, instead open it from its project or solution file.

Andrei Dragotoniu
  • 6,155
  • 3
  • 18
  • 32
1

I found it: right-click the project, then select Start Options... > References:

enter image description here

Note the most intuitive place to stash it.

B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862