I can not remove a reference installed by NuGet

4

I installed DLL Log4net with nuget . As it is in a different version of ours and a colleague gave me the usual one, I deleted it from the folder and put the current one. When I validate the solution / project, the version that was installed by NuGet returns. How do I remove and leave the old, even giving build? The uninstall option does not appear when I open NuGet (only Install ).

    
asked by anonymous 01.12.2015 / 17:54

1 answer

5

Open the Package Manager Console and run the following command:

PM> Uninstall-Package log4net

All references to log4net will be removed correctly.

    
01.12.2015 / 17:55