When installing a nuget package, is there any decrease in compilation time/performance from installing it globally for the entire solution?
For example, say I need Newtonsoft.Json for a particular task in one project. The other projects currently don't need it, but there's a chance they will in the future.
Is there any downside to installing it in all projects in the solution at the start? Or is it better to install it only in the projects I need it, and add it to others later?