We are using Visual Studio 2015 and also ProGet to host private feeds of NuGet, NPM and Bower. I'm trying to figure out the best way to have all of our team members pointed at our private registries with the least amount of effort. I know for Bower I can set a private repo in the .bowerrc file like so
{
"directory": "wwwroot/lib",
"registry": "http://proget.mysite.com/bower/Bower",
"search": "http://proget.mysite.com/bower/Bower"
}
and for NPM, I can use the command line to control it like so
npm config set registry http://proget/npm/private-npm
But I'd like a way to disseminate this to the team as easy as possible with minimal effort on their part and to not have to set it for each solution. It should apply globally. How can I do this? Any suggestions would be greatly appreciated. Thanks!