Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

NuGet newbie question-
I saw repositories.config being added in NuGet packages folder.
Can anyone please guide me what is the purpose of this file?

Thank you!

share|improve this question
related – jberger Feb 12 at 17:20

1 Answer

up vote 16 down vote accepted

It's a file that's mostly a NuGet implementation detail, and should not be dealt with directly (it may go away or change in the future).

But for reference, it contains a list of paths that point to all the packages.config in the solution. Typically there is one per project that uses NuGet.

share|improve this answer
4  
Should it be included in source control? – Colonel Panic Jun 26 '12 at 14:31
9  
@MattHickford If you use the Package Restore workflow, you can completely omit the Packages folder from source control (including this file). – David Ebbo Jun 26 '12 at 17:41
Great! Thanks for clarifying. – Colonel Panic Jun 27 '12 at 8:40
One more thing. If you use CI TeamCity >= 7.0 there is a build step Nuget Install. And that step requires that file. At least in 7.0.3. We've had to add repositories.config to git. Be careful. – Sergio Rykov Aug 2 '12 at 19:04
I had added some projects to a solution that I later removed from the solution, and it didn't clean up the references in my repositories.config file. Manually editing this file seemed like the right thing to do in this case. – Funka Jan 24 at 0:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.