Commit 9a2cc9f 1 parent bd10cf9 commit 9a2cc9f Copy full SHA for 9a2cc9f
File tree 5 files changed +2
-11
lines changed
5 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 58
58
with :
59
59
global-json-file : global.json
60
60
61
- - name : Setup .NET SDK 7.0
62
- uses : actions/setup-dotnet@v3
63
- with :
64
- dotnet-version : 7.0.x
65
-
66
61
- name : Setup .NET SDK 6.0
67
62
uses : actions/setup-dotnet@v3
68
63
with :
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<AssemblyTitle >MoreLinq.Test</AssemblyTitle >
5
- <TargetFrameworks >net8.0;net7.0; net6.0;net471</TargetFrameworks >
5
+ <TargetFrameworks >net8.0;net6.0;net471</TargetFrameworks >
6
6
<DebugType >portable</DebugType >
7
7
<AssemblyName >MoreLinq.Test</AssemblyName >
8
8
<OutputType Condition =" '$(TargetFramework)' == 'net471'" >Exe</OutputType >
Original file line number Diff line number Diff line change @@ -52,10 +52,8 @@ install:
52
52
- git reset --hard
53
53
- ps : if ($isWindows) { tools\dotnet-install.ps1 -JSonFile global.json }
54
54
- ps : if ($isWindows) { tools\dotnet-install.ps1 -Runtime dotnet -Version 6.0.11 -SkipNonVersionedFiles }
55
- - ps : if ($isWindows) { tools\dotnet-install.ps1 -Runtime dotnet -Version 7.0.14 -SkipNonVersionedFiles }
56
55
- sh : ./tools/dotnet-install.sh --jsonfile global.json
57
56
- sh : ./tools/dotnet-install.sh --runtime dotnet --version 6.0.11 --skip-non-versioned-files
58
- - sh : ./tools/dotnet-install.sh --runtime dotnet --version 7.0.14 --skip-non-versioned-files
59
57
- sh : export PATH="$HOME/.dotnet:$PATH"
60
58
before_build :
61
59
- dotnet --info
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ if %SKIP_TEST_BUILD%==false call build || exit /b 1
10
10
call :clean ^
11
11
&& call :test net8.0 Debug ^
12
12
&& call :test net8.0 Release ^
13
- && call :test net7.0 Debug ^
14
- && call :test net7.0 Release ^
15
13
&& call :test net6.0 Debug ^
16
14
&& call :test net6.0 Release ^
17
15
&& call :test net471 Debug ^
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ if [[ -z "$1" ]]; then
12
12
else
13
13
configs=" $1 "
14
14
fi
15
- for f in net6.0 net7.0 net8.0; do
15
+ for f in net6.0 net8.0; do
16
16
for c in $configs ; do
17
17
dotnet test --no-build -c $c -f $f --settings MoreLinq.Test/coverlet.runsettings MoreLinq.Test
18
18
TEST_RESULTS_DIR=" $( ls -dc MoreLinq.Test/TestResults/* | head -1) "
You can’t perform that action at this time.
0 commit comments