Reputation: 6964
My solution's .package
folder increases the size of the solution by several orders of magnitude - not including my Mvc app's build folders, of course. The bin folder isn't getting commited to source control and I'm wondering if I can skip out on the nuget folder too without having negative side effects.
Upvotes: 1
Views: 134
Reputation: 29851
The packages folder holds the nuget packages' content. In order to be able to use and distribute the solution without it you can enable the nuget package restore feature.
Upvotes: 1