Skip to content

Commit

Permalink
Fix broken SqlClient ref in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hanes committed Nov 23, 2018
1 parent 3355adf commit a5576f7
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/content/bulk load.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** hide ***)
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r "System.Transactions"
open FSharp.Data
open System
Expand Down
2 changes: 1 addition & 1 deletion docs/content/configuration and Input.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** hide ***)
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r "Microsoft.SqlServer.Types.dll"
(**
Expand Down
2 changes: 1 addition & 1 deletion docs/content/data modification.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** hide ***)
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r "System.Transactions"
open FSharp.Data
open System
Expand Down
2 changes: 1 addition & 1 deletion docs/content/debugging.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** hide ***)
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r "System.Transactions"
open FSharp.Data
open System
Expand Down
2 changes: 1 addition & 1 deletion docs/content/faq.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** hide ***)
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r "System.Transactions"
open FSharp.Data

Expand Down
2 changes: 1 addition & 1 deletion docs/content/index.fsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(*** hide ***)
#r "Microsoft.SqlServer.Types.dll"
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"

(**
Not your grandfather's ORM
Expand Down
2 changes: 1 addition & 1 deletion docs/content/output.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** hide ***)
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r "Microsoft.SqlServer.Types.dll"
open FSharp.Data
[<Literal>]
Expand Down
2 changes: 1 addition & 1 deletion docs/content/setup.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#nowarn "211"
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r "System.Transactions"

open FSharp.Data
Expand Down
2 changes: 1 addition & 1 deletion docs/content/transactions.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** hide ***)
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r "System.Transactions"
open FSharp.Data

Expand Down
4 changes: 2 additions & 2 deletions docs/content/unit-testing.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*** hide ***)
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r @"..\..\packages\Test\xunit\lib\net20\xunit.dll"
#r "System.Transactions"
open FSharp.Data
Expand Down Expand Up @@ -87,7 +87,7 @@ module MyTests =

//unit test
let ``best sales rep in Canada``() =
let expected = Some( GetSalesChampion.Record("José", "Saraiva"))
let expected = Some( GetSalesChampion.Record("Jos�", "Saraiva"))
assert (bestSalesRepInCanada mockRepository = expected)


Expand Down
2 changes: 1 addition & 1 deletion docs/content/whatsnew.fsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(*** hide ***)
#r "Microsoft.SqlServer.Types.dll"
#r @"..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\bin\net40\FSharp.Data.SqlClient.dll"

open FSharp.Data

Expand Down
2 changes: 1 addition & 1 deletion src/SqlClient.TestProjects/Lib/Script.fsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#r @"..\..\..\bin\FSharp.Data.SqlClient.dll"
#r @"..\..\..\bin\net40\FSharp.Data.SqlClient.dll"
#r @"bin\Debug\Lib.dll"
#r @"System.Configuration"
#r @"System.Transactions"
Expand Down

0 comments on commit a5576f7

Please sign in to comment.