Hello,
Today I started getting this error when running a script.
Project.fsproj.fsx(12,1): error FS3033: The type provider 'ProviderImplementation.JsonProvider' reported an error: The design-time type 'FSharp.Data.Runtime.StructuralInference+InferenceMode' utilized by a type provider was not found in the target reference assembly set
And I saw there was a new release of the library, 5.0.1
when I specified previous version, #r "nuget: FSharp.Data,4.2.9", it started working again.
I use JsonProvider like this
type Auth = JsonProvider<const(__SOURCE_DIRECTORY__ + "/samples/auth.json")>
Were there some breaking changes, and how should I use json type provider now?
Hello,
Today I started getting this error when running a script.
Project.fsproj.fsx(12,1): error FS3033: The type provider 'ProviderImplementation.JsonProvider' reported an error: The design-time type 'FSharp.Data.Runtime.StructuralInference+InferenceMode' utilized by a type provider was not found in the target reference assembly setAnd I saw there was a new release of the library, 5.0.1
when I specified previous version,
#r "nuget: FSharp.Data,4.2.9", it started working again.I use JsonProvider like this
type Auth = JsonProvider<const(__SOURCE_DIRECTORY__ + "/samples/auth.json")>Were there some breaking changes, and how should I use json type provider now?