diff --git a/docs/library/CsvProvider.fsx b/docs/library/CsvProvider.fsx index c0d3f40d2..8cf9c975c 100644 --- a/docs/library/CsvProvider.fsx +++ b/docs/library/CsvProvider.fsx @@ -47,8 +47,7 @@ present on the columns of that sample. The column names are obtained from the fi -The type provider is located in the `FSharp.Data.dll` assembly. Assuming the package is referenced -we can access its namespace as follows: +To use this type provider, reference the `FSharp.Data` NuGet package. Open the namespace: *) open FSharp.Data diff --git a/docs/library/JsonProvider.fsx b/docs/library/JsonProvider.fsx index ec5c9e33e..8ac468026 100644 --- a/docs/library/JsonProvider.fsx +++ b/docs/library/JsonProvider.fsx @@ -52,7 +52,7 @@ If the loaded file does not match the structure of the sample, a runtime error m -The type provider is located in the `FSharp.Data.dll` assembly and namespace: +To use this type provider, reference the `FSharp.Data` NuGet package. Open the namespace: *) open FSharp.Data diff --git a/docs/library/XmlProvider.fsx b/docs/library/XmlProvider.fsx index b432fe822..fc5e26688 100644 --- a/docs/library/XmlProvider.fsx +++ b/docs/library/XmlProvider.fsx @@ -45,12 +45,8 @@ relying on samples. ## Introducing the provider -The type provider is located in the `FSharp.Data.dll` assembly. Assuming the assembly -is located in the `../../bin` directory, we can load it in F# Interactive as follows: -(note we also need a reference to `System.Xml.Linq`, because the provider uses the -`XDocument` type internally): *) - -#r "System.Xml.Linq.dll" +To use this type provider, reference the `FSharp.Data` NuGet package. Open the namespace: +*) open FSharp.Data