diff --git a/test.cmd b/test.cmd index 93fb641a6..97648ec5c 100644 --- a/test.cmd +++ b/test.cmd @@ -8,6 +8,8 @@ goto :EOF setlocal call build ^ && call :clean ^ + && call :test net7.0 Debug ^ + && call :test net7.0 Release ^ && call :test net6.0 Debug ^ && call :test net6.0 Release ^ && call :test netcoreapp3.1 Debug ^ diff --git a/test.sh b/test.sh index c581713b6..772991688 100755 --- a/test.sh +++ b/test.sh @@ -10,7 +10,7 @@ if [[ -z "$1" ]]; then else configs="$1" fi -for f in netcoreapp3.1 net6.0; do +for f in netcoreapp3.1 net6.0 net7.0; do for c in $configs; do dotnet test --no-build -c $c -f $f --settings MoreLinq.Test/coverlet.runsettings MoreLinq.Test TEST_RESULTS_DIR="$(ls -dc MoreLinq.Test/TestResults/* | head -1)"