Sorry if this question is a bit unclear. This was the best thing I could do in my state of confusion regarding packages in F # 4.0.
The book by Expert F# 4.0Don Sim, Adam Granich and Antonio Cisternino contains code that processes JSON data. Code starts with
open FSharp.Data
open FSharp.Data.JsonExtensions
I have it FSharp.Datainstalled in Visual Studio. However, the word "JsonExtensions" gets red squiggles under it, and the rest of the code does not compile.
Going to Add Referencesthe Solution Explorer I did not find the package FSharp.Data.JsonExtensions. I also looked under NuGetand did not find the package FSharp.Data.JsonExtensions. There is documentation for what assumes this is a module. However, using the point to Visual Studio, it does not appear under (there is only one entry: )JsonExtensions
FSharp.Data.Unit Systems
How can I make the code in this module available so that I can run the code in a book?
source
share