Jesse Hallam
Jesse Hallam

Reputation: 6964

What is the use of the Nuget .package directory in my solution root

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

Answers (1)

PHeiberg
PHeiberg

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

Related Questions