Skip to content

Commit 3efc720

Browse files
authored
Use dotnet SDK 9.0.100 GA (#5929)
1 parent 196f405 commit 3efc720

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
env:
18-
dotnet_sdk_version: '9.0.100-rc.2.24474.11'
18+
dotnet_sdk_version: '9.0.100'
1919
postgis_version: 3
2020
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
2121
# Windows comes with PG pre-installed, and defines the PGPASSWORD environment variable. Remove it as it interferes

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ concurrency:
3232
cancel-in-progress: true
3333

3434
env:
35-
dotnet_sdk_version: '9.0.100-rc.2.24474.11'
35+
dotnet_sdk_version: '9.0.100'
3636
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
3737

3838
jobs:

.github/workflows/native-aot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
env:
18-
dotnet_sdk_version: '8.0.203'
18+
dotnet_sdk_version: '9.0.100'
1919
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
2020
AOT_Compat: |
2121
param([string]$targetFramework)

.github/workflows/rich-code-nav.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55

66
env:
7-
dotnet_sdk_version: '8.0.203'
7+
dotnet_sdk_version: '9.0.100'
88
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
99

1010
jobs:

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>9.0.0-preview.1</VersionPrefix>
3+
<VersionPrefix>9.0.0</VersionPrefix>
44
<LangVersion>latest</LangVersion>
55
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
66
<Nullable>enable</Nullable>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
3-
"version": "9.0.100-rc.2.24474.11",
3+
"version": "9.0.100",
44
"rollForward": "latestMajor",
5-
"allowPrerelease": "true"
5+
"allowPrerelease": "false"
66
}
77
}

0 commit comments

Comments
 (0)