Skip to content

Commit e4f9c96

Browse files
committed
Removed netcoreapp3.1
1 parent bc38084 commit e4f9c96

File tree

2 files changed

+0
-28
lines changed

2 files changed

+0
-28
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,6 @@ jobs:
2828
- name: Checkout repository
2929
uses: actions/checkout@v4
3030

31-
# Several .NET Core versions will be used during the test run.
32-
# The lowest version gets installed first in order to prevent
33-
# "a newer version is already installed" install errors.
34-
35-
- name: Install .NET Core 2.1
36-
uses: actions/setup-dotnet@v4
37-
with:
38-
dotnet-version: 2.1.x
39-
40-
- name: Install .NET Core 3.1
41-
uses: actions/setup-dotnet@v4
42-
with:
43-
dotnet-version: 3.1.x
44-
4531
- name: Install .NET 6.0
4632
uses: actions/setup-dotnet@v4
4733
with:
@@ -68,12 +54,6 @@ jobs:
6854
# Test
6955
# ----
7056

71-
- name: Test on .NET Core 2.1
72-
run: dotnet test -c Release -f netcoreapp2.1 --no-build --no-restore -l "console;verbosity=detailed"
73-
74-
- name: Test on .NET Core 3.1
75-
run: dotnet test -c Release -f netcoreapp3.1 --no-build --no-restore -l "console;verbosity=detailed"
76-
7757
- name: Test on .NET 6.0
7858
run: dotnet test -c Release -f net6.0 --no-build --no-restore -l "console;verbosity=detailed"
7959

buildscripts/build.cmd

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,6 @@ echo --------------------
4040
%UserProfile%\.nuget\packages\nunit.consolerunner\3.11.1\tools\nunit3-console.exe src/Castle.Core.Tests/bin/%Configuration%/net462/Castle.Core.Tests.exe --result=DesktopClrTestResults.xml;format=nunit3 || exit /b 1
4141
%UserProfile%\.nuget\packages\nunit.consolerunner\3.11.1\tools\nunit3-console.exe src/Castle.Core.Tests.WeakNamed/bin/%Configuration%/net462/Castle.Core.Tests.WeakNamed.exe --result=DesktopClrWeakNamedTestResults.xml;format=nunit3 || exit /b 1
4242

43-
echo ---------------------------
44-
echo Running NETCOREAPP3.1 Tests
45-
echo ---------------------------
46-
47-
dotnet .\src\Castle.Core.Tests\bin\%Configuration%\netcoreapp3.1\Castle.Core.Tests.dll --result=NetCoreClrTestResults.xml;format=nunit3 || exit /b 1
48-
dotnet .\src\Castle.Core.Tests.WeakNamed\bin\%Configuration%\netcoreapp3.1/Castle.Core.Tests.WeakNamed.dll --result=NetCoreClrWeakNamedTestResults.xml;format=nunit3 || exit /b 1
49-
50-
5143
echo ---------------------------
5244
echo Running NET6.0 Tests
5345
echo ---------------------------

0 commit comments

Comments
 (0)