Skip to content

Commit dd2ed81

Browse files
authored
Bump SDK and dependencies to 8.0 GA (#5397)
1 parent f262fd1 commit dd2ed81

7 files changed

Lines changed: 8 additions & 7 deletions

File tree

.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: '8.0.100-rc.2.23502.2'
18+
dotnet_sdk_version: '8.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: '8.0.100-rc.2.23502.2'
35+
dotnet_sdk_version: '8.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.100-rc.2.23502.2'
18+
dotnet_sdk_version: '8.0.100'
1919
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
2020
# Uncomment and edit the following to use nightly/preview builds
2121
# nuget_config: |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '*'
1010

1111
env:
12-
dotnet_sdk_version: '8.0.100-rc.2.23502.2'
12+
dotnet_sdk_version: '8.0.100'
1313
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
1414

1515
jobs:

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<SystemVersion>8.0.0-rc.2.23479.6</SystemVersion>
3+
<SystemVersion>8.0.0</SystemVersion>
44
<ExtensionsVersion>$(SystemVersion)</ExtensionsVersion>
55
</PropertyGroup>
66

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"sdk": {
33
"version": "8.0.100",
44
"rollForward": "latestMajor",
5-
"allowPrerelease": "true"
5+
"allowPrerelease": "false"
66
}
77
}

src/Npgsql.GeoJSON/Internal/GeoJSONConverter.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,8 @@ double ReadDouble(bool littleEndian)
294294
{
295295
if (littleEndian)
296296
{
297-
var value = BinaryPrimitives.ReverseEndianness(Unsafe.As<double, long>(ref Unsafe.AsRef(reader.ReadDouble())));
297+
var doubleValue = reader.ReadDouble();
298+
var value = BinaryPrimitives.ReverseEndianness(Unsafe.As<double, long>(ref doubleValue));
298299
return Unsafe.As<long, double>(ref value);
299300
}
300301

0 commit comments

Comments
 (0)