6

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
  • 57,045
  • 27
  • 167
  • 292
NotFound
  • 3,631
  • 1
  • 9
  • 27

1 Answers1

8

.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,687
  • 3
  • 21
  • 46