Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/library/CsvProvider.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ present on the columns of that sample. The column names are obtained from the fi
</div>
</div>

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
Expand Down
2 changes: 1 addition & 1 deletion docs/library/JsonProvider.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ If the loaded file does not match the structure of the sample, a runtime error m
</div>
</div>

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
Expand Down
8 changes: 2 additions & 6 deletions docs/library/XmlProvider.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading