I have a problem with Visual Studio 2017. When I install any package, nuget manager not installs dependencies. For example, Microsoft.EntityFrameworkCore.Sqlite has 2 dependencies and I must install it manually.
Is it normal behavior? As I remember in the past nuget manager did dependencies installation automatically.
Your package should be managed as
packagereference. You could edit your project file.csprojto check it.Unlike
packages.config, PackageReference lists only those NuGet packages you directly installed in the project. As a result, the NuGet Package Manager UI and the project file aren't cluttered with down-level dependencies.Besides, the dependencies info included in the
project.assets.jsonin theobjfolder. You do not need to install the dependencies manually.You can check the document Migrate from packages.config to PackageReference for some details.
Hope this helps.