Skip to content

Instantly share code, notes, and snippets.

@natemcmaster
Last active June 22, 2016 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save natemcmaster/eb0cbecc8b0b43353234e160f09fb8a8 to your computer and use it in GitHub Desktop.
Save natemcmaster/eb0cbecc8b0b43353234e160f09fb8a8 to your computer and use it in GitHub Desktop.
Clear NuGet
REM npm i -g rimraf
REM https://github.com/isaacs/rimraf
rimraf %USERPROFILE%\.nuget\ %LOCALAPPDATA%\NuGet\v3-cache\ %LOCALAPPDATA%\NuGet\Cache\
rm -rf $HOME/.nuget/ $HOME/.local/share/NuGet
@analogrelay
Copy link

analogrelay commented Jun 22, 2016

PowerShell (avoids the need to install rimraf):

del -rec -for $env:USERPROFILE\.nuget\,$env:LOCALAPPDATA\NuGet\v3-cache\,$env:LOCALAPPDATA\NuGet\Cache\

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment