We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93f29e commit eebe3c6Copy full SHA for eebe3c6
evergreen/evergreen.yml
@@ -1703,6 +1703,9 @@ tasks:
1703
- name: test-efcore
1704
commands:
1705
- func: install-dotnet
1706
+ vars:
1707
+ DOTNET_SDK_VERSION: 9.0
1708
+ FRAMEWORK: net8.0
1709
- func: bootstrap-mongo-orchestration
1710
- command: expansions.update
1711
params:
evergreen/install-dotnet.sh
@@ -9,6 +9,8 @@ echo "runtime: $FRAMEWORK"
9
if [ -n "$FRAMEWORK" ]; then
10
if [ "$FRAMEWORK" = "net6.0" ]; then
11
RUNTIME_VERSION="6.0"
12
+ elif [ "$FRAMEWORK" = "net8.0" ]; then
13
+ RUNTIME_VERSION="8.0"
14
elif [ "$FRAMEWORK" = "netstandard2.1" ]; then
15
RUNTIME_VERSION="3.1"
16
fi
0 commit comments