Don't put the *.nupkg file in /packages when installing a package
description
The *.nupkg file is a ZIP file containing the contents of the package a nuspec file used during an uninstall. Having this *.nupkg file under /packages means it will be checked into source control along with the rest of the package files and essentially means all package files are checked-in twice. Once as part of the nupkg ZIP file and once from the /package/* folder.
This nearly doubles the amout of space needed for the packages in your project and significantly slows down check-out operations, especially over remote connections.
I propose we ditch the *.nupkg file from the /packages/* folders and simply include the nuspec file that is needed for uninstalls along with the rest of the packages installed files.