Skip to content

Commit eebe3c6

Browse files
authored
CSHARP-5685: Use dotnet 9.0 SDK to build efcore tests (#1744)
1 parent a93f29e commit eebe3c6

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

evergreen/evergreen.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1703,6 +1703,9 @@ tasks:
17031703
- name: test-efcore
17041704
commands:
17051705
- func: install-dotnet
1706+
vars:
1707+
DOTNET_SDK_VERSION: 9.0
1708+
FRAMEWORK: net8.0
17061709
- func: bootstrap-mongo-orchestration
17071710
- command: expansions.update
17081711
params:

evergreen/install-dotnet.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ echo "runtime: $FRAMEWORK"
99
if [ -n "$FRAMEWORK" ]; then
1010
if [ "$FRAMEWORK" = "net6.0" ]; then
1111
RUNTIME_VERSION="6.0"
12+
elif [ "$FRAMEWORK" = "net8.0" ]; then
13+
RUNTIME_VERSION="8.0"
1214
elif [ "$FRAMEWORK" = "netstandard2.1" ]; then
1315
RUNTIME_VERSION="3.1"
1416
fi

0 commit comments

Comments
 (0)