Search code examples
visual-studionugetnuget-packagenuget-server

Install nuget packages with permissions


using vs 2017 is it possible to control/permission who can install packages in a solution without using Team Services or other third party tool?

thanks


Solution

  • is it possible to control/permission who can install packages in a solution without using Team Services or other third party tool?

    To my knowledge, we could not set permission who can install packages from NuGet gallery without VSTS or third party tool. That because the gallery has not been implemented for this, but you can set up a NuGet server that is accessible via https from the internet, and only allows people who can successfully authenticate to view or download the packages on the server.

    You can refer to how to set NuGet.Server and how to Configuring NuGet server to use Authentication for detail info.