Changing Nuget folder location
I found an old question on this where it was said you could go to the Nuget manager and click on the settings button then navigate to the Advanced tab and change this. This doesn't seem to work any more. The only thing on the Advanced tab is "proxy settings". I'm trying to free up some space on my C: drive and there's quite a bit of room taken up by my Linqpad nuget packages. Is there some way to move them?
Comments
LINQPad 6 uses the global NuGet cache (the same one used by Visual Studio and the command-line). I've not tried this, but it seems to be possible to change its location via an environment variable:
https://stackoverflow.com/questions/35710780/can-the-nuget-3-2-package-cache-location-be-changed
NUGET_PACKAGES environment variable seems to do the trick. Had to move all my nuget packages from the C: drive to keep everything working correctly (not that it's a big problem for LinqPad which just reloads them). Thanks so much for your help!