Posted on Leave a comment

Nuget

[https://docs.microsoft.com/en-us/nuget/]

[https://docs.microsoft.com/ru-ru/nuget/consume-packages/managing-the-global-packages-and-cache-folders]


Command line [https://docs.nuget.org/consume/command-line-reference]

nuget locals all -list

nuget locals all -clear


Is it possible to change the location of packages for NuGet? [https://stackoverflow.com/questions/4092759/is-it-possible-to-change-the-location-of-packages-for-nuget]
nuget.config file next to the solution
<settings>
<repositoryPath>{some path here}</repositoryPath>
</settings>
or
<configuration>
<config>
<add key="repositoryPath" value="C:\thePathToMyPackagesFolder" />
</config>
...
</configuration>

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.