Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are the Assemblies Located for Installed Nuget Packages When Using .Net Core?

I don't seem to be able to find the actual *.dll files. There's a whole lot of references to them, but none appear to have a file path.

like image 847
Benjamin Avatar asked Jan 14 '17 00:01

Benjamin


1 Answers

On Windows, you will find nuget packages and corresponding dll at this location C:\Users\%username%\.nuget\packages

For managing nuget cache refer this article.

On windows you need to download the nuget command line tool from here.

Open a command prompt with directory to which nuget.exe was downloaded on your machine.

You can list the local caches with this command:

nuget locals all -list

You can clear all caches with this command:

nuget locals all -clear

Reference: https://docs.nuget.org/consume/command-line-reference

like image 145
Sanket Avatar answered Oct 30 '22 17:10

Sanket