Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Don Syme committed Apr 15, 2021
1 parent 162654e commit 7b099b4
Show file tree
Hide file tree
Showing 23 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

dotnet tool restore
dotnet paket restore
dotnet fake build -t Build
dotnet fake build %*
6 changes: 3 additions & 3 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ let project = "FSharp.Data"
let authors = "Tomas Petricek;Gustavo Guerra;Colin Bull;fsprojects contributors"
let summary = "Library of F# type providers and data access tools"
let description = """
The FSharp.Data library (FSharp.Data.dll) contains type providers and utilities to access
common data formats in your F# applications and scripts. It contains F# type providers for working with
structured file formats (CSV, HTML, JSON and XML) and helpers for parsing CSV, HTML and JSON files and for sending HTTP requests."""
The FSharp.Data package contains type providers and utilities to access
common data formats (CSV, HTML, JSON and XML in your F# applications and scripts. It also
contains helpers for parsing CSV, HTML and JSON files and for sending HTTP requests."""
let tags = "F# fsharp data typeprovider WorldBank CSV HTML CSS JSON XML HTTP linqpad-samples"

let gitOwner = "fsprojects"
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/library/CsvFile.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/library/CsvProvider.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/library/Http.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/library/JsonProvider.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/library/JsonValue.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/library/WorldBank.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/library/XmlProvider.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/tutorials/JsonAnonymizer.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ JSON匿名化機能をコード内で利用したい場合には、
*)

#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
open System
open System.Globalization
open FSharp.Data
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/tutorials/JsonToXml.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ JSONとXML間の変換を自身のコードで使いたい場合には
*)

#r "System.Xml.Linq.dll"
#r "../../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
open System.Xml.Linq
open FSharp.Data

Expand Down
2 changes: 1 addition & 1 deletion docs/library/CsvFile.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/library/CsvProvider.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/library/HtmlCssSelectors.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/library/HtmlParser.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/library/HtmlProvider.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/library/Http.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/library/JsonProvider.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/library/JsonValue.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To load a sample JSON document, we first need to reference the `FSharp.Data.dll`
(when using F# Interactive) or to add reference to a project.
*)

#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
open FSharp.Data

(**
Expand Down
2 changes: 1 addition & 1 deletion docs/library/WorldBank.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/library/XmlProvider.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/JsonAnonymizer.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/JsonToXml.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** condition: prepare ***)
#r "../../bin/lib/netstandard2.0/FSharp.Data.dll"
#r "../../src/FSharp.Data/bin/Release/netstandard2.0/FSharp.Data.dll"
(*** condition: fsx ***)
#if FSX
#r "nuget: FSharp.Data,{{fsdocs-package-version}}"
Expand Down

0 comments on commit 7b099b4

Please sign in to comment.