I'm considering setting up Intranet-level Nuget feed(bunch of teams in my company are supposed to use it).
I've looked briefly through some tutorials + appropriate chapters in Pro Nuget book, however I still do have some question left so far:
- How to make windows integrated security working on private feed smoothly and customize access rights for private Nuget feed(for instance, grant everyone to get packages but grant pushing only to several domain users/groups);
- How to allow developers to push packages to private feed without having
api key
? - How to save developers from making such silly mistake as pushing package to public feed? Is that enough to not configure
api key
for public feed as default?
Has anyone faced with one of these cases?