24

I have a solution having 1 project. Open Package Manager Console, run Install-Package MSBuildTasks But it gave me an error below:

Install-Package : The current environment doesn't have a solution open.
At line:1 char:16
+ Install-Package <<<<  MSBuildTasks 
    + CategoryInfo          : InvalidOperation: (:) [Install-Package], InvalidOperationExcep 
   tion
    + FullyQualifiedErrorId : NuGetNoActiveSolution,NuGet.PowerShell.Commands.InstallPackage 
   Command

I don't understand why it comes. Kindly suggest me waiting for reply. Thanks

Snekse
  • 15,474
  • 10
  • 62
  • 77
user88
  • 1,174
  • 3
  • 27
  • 51

1 Answers1

75

I usually get this error because I created or opened a project (.csproj or other) that doesn't have a saved solution (.sln) associated with it.

If you go to File->Save All it should offer to save the solution somewhere. Save it and that makes the error go away for me.

Laughing_Jack
  • 1,603
  • 15
  • 14