I am using Visual Studio .NET 2012 and NuGet for link management for my ASP.NET MVC 4 solution.
How to remove a link created using NuGet ? I know that I can just go and delete it by right-clicking Delete. However, this seems dangerous to me, because the packages mentioned may have brought other dependencies of their own.
In my main project, I right-clicked References->Manage NuGet Packages and installed Moq (see screenshot below)

However, in my tests, I was not able to reference Moq .
I realized that the Guestbook.Tests project, created when creating my ASP.NET MVC 4 solution, has its own References .
So, I added Moq here, but I would like to clear and remove Moq from my main Guestbook project.
Can someone point me in the right direction how to do this safely?
Thank you in advance!
source share