From e8ec074a8c4623b523bf5c9fa08b009736affd47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lozier?= Date: Mon, 23 Dec 2024 18:02:57 -0500 Subject: [PATCH] Drop .NET Core 3.1 testing --- .github/workflows/main.yml | 3 --- Build.proj | 2 +- Package/nuget/DynamicLanguageRuntime.nuspec | 9 +++------ Tests/Metadata/Metadata.csproj | 4 +--- .../Microsoft.Dynamic.Test/Microsoft.Dynamic.Test.csproj | 4 +--- .../Microsoft.Scripting.Test.csproj | 4 +--- make.ps1 | 2 +- 7 files changed, 8 insertions(+), 20 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a1c1fdfc..5c64d8f0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,9 +42,6 @@ jobs: - name: Test (net462) run: ./make.ps1 -frameworks net462 test-all shell: pwsh - - name: Test (netcoreapp3.1) - run: ./make.ps1 -frameworks netcoreapp3.1 test-all - shell: pwsh - name: Test (net6.0) run: ./make.ps1 -frameworks net6.0 test-all shell: pwsh diff --git a/Build.proj b/Build.proj index fda60715..91d14d63 100644 --- a/Build.proj +++ b/Build.proj @@ -108,7 +108,7 @@ Outputs="$(PackageDir)\DynamicLanguageRuntime.$(PackageVersion).zip"> + Exclude="$(StageDir)\net6.0\*;$(StageDir)\net9.0*\*" /> diff --git a/Package/nuget/DynamicLanguageRuntime.nuspec b/Package/nuget/DynamicLanguageRuntime.nuspec index 77128c48..4ec745d3 100644 --- a/Package/nuget/DynamicLanguageRuntime.nuspec +++ b/Package/nuget/DynamicLanguageRuntime.nuspec @@ -23,18 +23,15 @@ - - - - - - + + + diff --git a/Tests/Metadata/Metadata.csproj b/Tests/Metadata/Metadata.csproj index 009de736..98c11bd0 100644 --- a/Tests/Metadata/Metadata.csproj +++ b/Tests/Metadata/Metadata.csproj @@ -1,9 +1,7 @@  - net462;netcoreapp3.1;net6.0;net8.0;net9.0 - - false + net462;net6.0;net8.0;net9.0 Exe true $(DefineConstants);CCI diff --git a/Tests/Microsoft.Dynamic.Test/Microsoft.Dynamic.Test.csproj b/Tests/Microsoft.Dynamic.Test/Microsoft.Dynamic.Test.csproj index 1fa19c51..d640ebc4 100644 --- a/Tests/Microsoft.Dynamic.Test/Microsoft.Dynamic.Test.csproj +++ b/Tests/Microsoft.Dynamic.Test/Microsoft.Dynamic.Test.csproj @@ -1,9 +1,7 @@  - net462;netcoreapp3.1;net6.0;net8.0;net9.0 - - false + net462;net6.0;net8.0;net9.0 diff --git a/Tests/Microsoft.Scripting.Test/Microsoft.Scripting.Test.csproj b/Tests/Microsoft.Scripting.Test/Microsoft.Scripting.Test.csproj index 616b0f04..133922dd 100644 --- a/Tests/Microsoft.Scripting.Test/Microsoft.Scripting.Test.csproj +++ b/Tests/Microsoft.Scripting.Test/Microsoft.Scripting.Test.csproj @@ -1,9 +1,7 @@  - net462;netcoreapp3.1;net6.0;net8.0;net9.0 - - false + net462;net6.0;net8.0;net9.0 diff --git a/make.ps1 b/make.ps1 index 8a97f4bf..4e67a6d6 100755 --- a/make.ps1 +++ b/make.ps1 @@ -4,7 +4,7 @@ Param( [Parameter(Position=1)] [String] $target = "release", [String] $configuration = "Release", - [String[]] $frameworks=@('net462','netcoreapp3.1','net6.0','net8.0','net9.0'), + [String[]] $frameworks=@('net462','net6.0','net8.0','net9.0'), [String] $platform = "x64", [switch] $runIgnored )