You can do this using Visual Studio menu on UI or by using command. You have two ways to do this. Let’s check:

First Option:

Let’s move with first option, we can clear our development computer’s NuGet package cache using Visual Studio menu Tools → Options → NuGet Package Manager → General: “Clear Package Cache” button.

How can I clear the NuGet package cache using the command line?

Second Option:

First, download the NuGet command line tool from here. Now, open command prompt and type cd to the directory to which nuget.exe was downloaded.

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

In case of .Net core you can use following command to clear cache

dotnet nuget locals all --clear

Check More:

I hope you enjoyed reading this post. For more information you can check out Microsoft learn.

For more information you can visit our C# Section for more such posts.

Leave a Reply

Your email address will not be published. Required fields are marked *

Explore More

How To Fix Azure Functions Timer Trigger Unable to Start Running Locally with Vs2022 17 2 X Azurite

Lately my VS2022 (17.2.x) Azure Functions projects started failing to run locally. The local console had errors related to not being able to start any of the Timer Triggers. The

How to get the nuget cache folder location programmatically

While programming if I need to get from a .NET app (not .NET Core app) the list of directories where NuGet stores its packages. Let’s see how to do this.

Get TFS to ignore NuGet packages folder

We have to tell both NuGet and TFS to ignore the packages, because NuGet is trying to do source-control related stuff that it absolutely shouldn’t be doing. So, you have