Skip to content

Commit 13245cf

Browse files
committed
Migrated to .NET 10
1 parent 64c1632 commit 13245cf

6 files changed

Lines changed: 13 additions & 8 deletions

File tree

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333
with:
3434
global-json-file: global.json
3535
dotnet-version: |
36-
9.x
36+
10.x
3737
8.x

.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: 9.0.307
11+
DOTNET_SDK_VERSION: 10.0.102
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: 9.0.307
12+
DOTNET_SDK_VERSION: 10.0.102
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: [9.0.307]
24+
dotnet: [10.0.102]
2525
runs-on: ${{ matrix.os }}
2626

2727
steps:

Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<Project>
22

33
<PropertyGroup>
4-
<DotNetVersion>net8.0</DotNetVersion>
5-
<LangVersion>9.0</LangVersion>
6-
<FSharpCoreVersion>9.0.*</FSharpCoreVersion>
4+
<DotNetVersion>net10.0</DotNetVersion>
5+
<LangVersion>10.0</LangVersion>
6+
<FSharpCoreVersion>10.0.*</FSharpCoreVersion>
77
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
88
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
99
<NoWarn>$(NoWarn);NU1504;NU1701</NoWarn>
1010
<TreatWarningsAsErrors Condition="'$(Configuration)' != 'Debug'">true</TreatWarningsAsErrors>
1111
</PropertyGroup>
1212

1313
<PropertyGroup Label="NuGet">
14-
<Version>3.1.1</Version>
14+
<Version>4.0.0</Version>
1515
</PropertyGroup>
1616

1717
</Project>

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,8 @@
244244

245245
* Fixed planning phase crash when inline fragments reference types not included in union or interface definitions
246246
* Fixed GraphQL client provider handling for schema types that reuse reserved scalar names such as `Date`, so introspection kind now takes precedence over built-in scalar mappings.
247+
* Improved Relay XML documentation comments
248+
249+
### 4.0.0 - Unreleased
250+
251+
* **Breaking Change** Migrated to .NET 10

0 commit comments

Comments
 (0)