Failed to refer to a nuget package

-1

After installing the W10 Anniversary Update, I have been trying to build an open source project that I normally did before and now I can not do it. I get the following error in Visual Studio 2015 Update 3 output:

Severity    Code    Description Project File    Line    Suppression State
Error   CS0246  The type or namespace name 'GeoExtensions' could not be found (are you missing a using directive or an assembly reference?)

The error is not with the project, obviously, since there are hundreds of people compiling it with no problem.

I've tried:

  • Clean solution
  • Bebuild solution
  • Check with nuget if packet is right
  • "restore" all nuget packages
  • Uninstall and install all packages.
  • Format the computer and make the cleanest possible installation of Visual Studio
  • And any other "solution" I found in stackoverflow or any other site, over several days of searching

But the problem continues.

    
asked by anonymous 15.08.2016 / 21:04

1 answer

2

This has happened to me, follow the steps that usually solve my problem.

  • Make a Clean Solution
  • Close Visual Studio
  • Via Windows Explorer , go to your solution folder
  • Delete the packages
  • Open your solution in Visual Studio again
  • Rebuild
  • 16.08.2016 / 09:45