Is there a way to install Nuget Packages globally?
I have a Nuget Package that I would like to use across multiple projects without having to download for each project?
Each project will have its own solution and it will be independent of other project.
dotnet tool install -g <package>
. For more information, see natemcmaster.com/blog/2018/05/12/dotnet-global-tools. – Draw