I'm trying to write a F# script file. So I use Visual studio "File->New->Files->F# Script File" to generated a new fsx file. Now I want to add reference to FSharpData by opening the Package Manager Console and enter
Install-Package FSharp.Data
However I got the following error. Is solution always required to be created even for F# script file?
Install-Package : The current environment doesn't have a solution open. At line:1 char:1 + Install-Package FSharp.Data + ~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (:) [Install-Package], InvalidOperationException + FullyQualifiedErrorId : NuGetNoActiveSolution,NuGet.PowerShell.Commands.InstallPackageCommand