简体   繁体   中英

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM