Answers for "delete local nuget caches"

2

delete local nuget caches

dotnet nuget locals all --clear
Posted by: Guest on October-09-2020
0

nuget clear cache

# Clear the 3.x+ cache (use either command)
dotnet nuget locals http-cache --clear
nuget locals http-cache -clear

# Clear the 2.x cache (NuGet CLI 3.5 and earlier only)
nuget locals packages-cache -clear

# Clear the global packages folder (use either command)
dotnet nuget locals global-packages --clear
nuget locals global-packages -clear

# Clear the temporary cache (use either command)
dotnet nuget locals temp --clear
nuget locals temp -clear

# Clear the plugins cache (use either command)
dotnet nuget locals plugins-cache --clear
nuget locals plugins-cache -clear

# Clear all caches (use either command)
dotnet nuget locals all --clear
nuget locals all -clear
Posted by: Guest on June-01-2021
0

Delete local Nuget repository cache

Tools → NuGet Package Manager → Package Manager Settings
Posted by: Guest on September-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language