amateur
amateur

Reputation: 44605

modifications to nuget if possible

I have been using Nuget package manager recently and have found it excellent. However I have a couple questions regarding it, they are pain points as such that I am hoping someone can help me improve:

Upvotes: 0

Views: 53

Answers (1)

Arpit
Arpit

Reputation: 6260

Yes, You can rename the "packages" folder and also define it's location in nuget.config

Example:

<settings> 
    <repositoryPath>..\Build\NuGetPackages\</repositoryPath> 
</settings> 

Upvotes: 1

Related Questions