8

I've the issue that I can't seem to figure out how to add references to certain solutions.

In most of the solutions I start in Visual Studio '17 I see "References" in my solution explorer, but e.g. for a asp.net core web api I get "Dependencies" instead. Whenever the solution shows the "References" I can view the "assemblies" tab in the "Reference Manager", but for solutions that have the "Depedencies" I can't see it (as shown in example below).

example of what the reference manager looks like for Dependencies

Jeremy Thompson
  • 61,933
  • 36
  • 195
  • 321
NotFound
  • 5,005
  • 2
  • 13
  • 33

1 Answers1

11

.Net core only works with NuGet packages.

if you have other libraries which are not part of your current solution. you need to pack it a NuGet server (You can have a local NuGet server as well)

see the following post for more information:

Using external .dll in dot net core

Mahdi
  • 1,777
  • 4
  • 24
  • 48