svn - Recommendations for visual studio package management in the Enterprise -
our development team uses nuget , svn currently. have problems unwanted package restores silently , uncontrolably replaces references in our shared projects. (we have automated build process)
can recommend add-ons, tools or proven best-practices or strategies secure management of external references, versioning (and possbly visualization of dependency graphs.) ?
we have problems unwanted package restores silently , uncontrolably replaces references in our shared projects
i may misunderstand point sounds if saying package restore changes references in project file. seems bug. nuget shouldn't upgrade packages nor touch project files when doing package restore -- should restore exact versions described in packages.config
.
as far enterprise environments go, don't want build talking on internet nuget.org. can achieve providing nuget.config
file removes ambient package sources , provide specific package source points to, say, internal network share. have shared location thats in version control contains packages. that's did internally building our nuget packages.
does help?
Comments
Post a Comment