Project default is not found [closed]

1

I installed a NuGet package and gave Project default is not found error. Well, I was in ComboBox Default Project to add the project I want to install the package and in Combo does not list anything, it's empty. How do I get the projects to show up there? I have only two projects, a SPA that is my startup and a Class Library called Domain. It is in the Domain that I want to install the package ( FluentValidation ).

    
asked by anonymous 01.06.2017 / 20:37

1 answer

1

Is the% installed% compatible with the project?

Verify which version of Nuget is installed in your project and which frameworks support it. After that, follow the steps below to see if it works:

  • Right-click the project name in the Solution panel Explorer > Properties .
  • On the Application tab, change the framework to a newer one (which supports the NuGet version).
  • Close and try again.

Also check that the project name is not too long, it seems that this can also cause the problem.

    
01.06.2017 / 21:09