Skip to content

Commit b55a2b0

Browse files
committed
Removed net47 references from scripts
1 parent b6c2c22 commit b55a2b0

File tree

11 files changed

+4
-114
lines changed

11 files changed

+4
-114
lines changed

samples/client-provider/field_aliases.fsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
//#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open FSharp.Data.GraphQL
Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open System
@@ -33,12 +23,12 @@ let mutation =
3323
}""">()
3424

3525
let upload() =
36-
let input =
26+
let input =
3727
[| new Upload(File.OpenRead("txt_file.txt"), "text.txt", ownsStream = true)
3828
new Upload(File.OpenRead("png_file.png"), "image.png", ownsStream = true) |]
3929
let request = MyProvider.Types.MultipleUploadRequest(input)
4030
let result = mutation.Run(request)
4131
input |> Array.iter (fun x -> (x :> IDisposable).Dispose())
4232
printfn "Data: %A" result.Data
4333

44-
upload()
34+
upload()

samples/client-provider/file-upload/single_file_upload.fsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open System.IO
@@ -37,4 +27,4 @@ let upload() =
3727
let result = mutation.Run(input)
3828
printfn "Data: %A" result.Data
3929

40-
upload()
30+
upload()

samples/client-provider/file-upload/uploaded_files.fsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open System.IO
@@ -33,4 +23,4 @@ let query =
3323

3424
let result = query.Run()
3525

36-
printfn "Data: %A" result.Data
26+
printfn "Data: %A" result.Data

samples/client-provider/github_access.fsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open FSharp.Data.GraphQL

samples/client-provider/graphql_client.fsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open FSharp.Data.GraphQL

samples/client-provider/http_headers_introspection.fsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open FSharp.Data.GraphQL

samples/client-provider/mutations.fsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open FSharp.Data.GraphQL

samples/client-provider/parameters.fsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open FSharp.Data.GraphQL

samples/client-provider/short_hand_query.fsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
// Uncomment those to use build script client assembly
2-
//#r "../../bin/FSharp.Data.GraphQL.Client/net47/FSharp.Data.GraphQL.Client.dll"
3-
//#r "../../bin/FSharp.Data.GraphQL.Shared/net47/FSharp.Data.GraphQL.Shared.dll"
4-
51
// Uncomment those to use build script client assembly using netstandard2.0
62
//#r "../../bin/FSharp.Data.GraphQL.Shared/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
7-
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/netstandard.dll"
83
//#r "../../bin/FSharp.Data.GraphQL.Client/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
94

10-
// Uncomment those to use dotnet build command for the client assembly
11-
// #r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/net47/FSharp.Data.GraphQL.Shared.dll"
12-
// #r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/net47/FSharp.Data.GraphQL.Client.dll"
13-
145
//Uncomment those to use dotnet build command for the client assembly using netstandard2.0
156
#r "../../src/FSharp.Data.GraphQL.Shared/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Shared.dll"
16-
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/netstandard.dll"
177
#r "../../src/FSharp.Data.GraphQL.Client/bin/Debug/netstandard2.0/FSharp.Data.GraphQL.Client.dll"
188

199
open FSharp.Data.GraphQL

0 commit comments

Comments
 (0)