Skip to content

Commit 00c25ea

Browse files
committed
Updated .NET SDK to 10.0.202
Co-authored-by: Andrii Chebukin <XperiAndri@Outlook.com>
1 parent 17b8761 commit 00c25ea

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/publish-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
1010
DOTNET_NOLOGO: true
11-
DOTNET_SDK_VERSION: 10.0.102
11+
DOTNET_SDK_VERSION: 10.0.202
1212

1313
jobs:
1414
publish:

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
1010
DOTNET_NOLOGO: true
1111
SLEEP_DURATION: 60
12-
DOTNET_SDK_VERSION: 10.0.102
12+
DOTNET_SDK_VERSION: 10.0.202
1313

1414
jobs:
1515
publish:

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-22.04, windows-latest, macOS-latest]
24-
dotnet: [10.0.102]
24+
dotnet: [10.0.202]
2525
runs-on: ${{ matrix.os }}
2626

2727
steps:

build/Program.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let ctx = Context.forceFakeContext ()
3232
let embedAll = ctx.Arguments |> List.exists (fun arg -> arg = BuildArguments.EmbedAll)
3333

3434
module DotNetCli =
35-
let setVersion (o : DotNet.Options) = { o with Version = Some "9.0.307" }
35+
let setVersion (o : DotNet.Options) = { o with Version = Some "10.0.202" }
3636
let setRestoreOptions (o : DotNet.RestoreOptions) = o.WithCommon setVersion
3737

3838
let configurationString = Environment.environVarOrDefault "CONFIGURATION" "Release"
@@ -50,7 +50,7 @@ let configuration =
5050
// - for documentation, you also need to edit info in "docs/tools/generate.fsx"
5151

5252
[<Literal>]
53-
let DotNetMoniker = "net8.0"
53+
let DotNetMoniker = "net10.0"
5454

5555
let project = "FSharp.Data.GraphQL"
5656
let release = ReleaseNotes.load "RELEASE_NOTES.md"

0 commit comments

Comments
 (0)