How to bring NuGet packages into SVN

svnvisual studio 2012visualsvn

I use Visual Studio 2012 with VisualSVN plugin, which I believe the best in handling source control with SVN.

I found that it won't add or commit NuGet packages unless I do it manually with TortoiseSVN.

I thought that adding the packages directory recursively to solution helps because VisualSVN will detect the files and add them to Subversion.

Any idea on how to synchronize SVN repository with NuGet packages downloaded for the solution?

Best Answer

Nuget packages must be stored in own repository (if publishing of packages for team is needed), not in Subversion repo - you haven't any reasons for versioning artifacts

Related Question