4

After a update on the VS, and clean all my projects and can't see where are the packages downloaded/stored. Are not in my project(s) folder anywhere. However, I can build and run ok.

mamcx
  • 15,916
  • 26
  • 101
  • 189
  • For ASP.NET Core apps, NuGet packages are restored to global cache, not in solution folders. – Lex Li Jan 29 '18 at 20:02
  • I am assuming you are talking about NuGet packages. If you are using a .NET Core or .NET Standard project then the NuGet packages would be in the `~/.nuget/packages/` folder. – Matt Ward Jan 30 '18 at 15:41
  • 2
    That is correct. Please add as a answer so I can accept it. – mamcx Jan 30 '18 at 16:09

1 Answers1

9

You can find those in the global cache:

~/.nuget/packages/
Eric
  • 1,392
  • 17
  • 37