-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop support for .NETCore3.1
in Tests and samples
#6529
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please check it @Aaronontheweb
@@ -56,7 +56,6 @@ let incrementalistReport = output @@ "incrementalist.txt" | |||
|
|||
// Configuration values for tests | |||
let testNetFrameworkVersion = "net471" | |||
let testNetCoreVersion = "netcoreapp3.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I remove "netcoreapp3.1" from build.fsx
- everything.
@@ -3,7 +3,7 @@ | |||
<Import Project="..\..\common.props" /> | |||
<PropertyGroup> | |||
<OutputType>Exe</OutputType> | |||
<TargetFrameworks>$(NetTestVersion);$(NetCoreTestVersion)</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I only removed this everywhere........
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - just waiting to see if the same two tests on .NET 7 fail again after this.
@@ -4,8 +4,8 @@ | |||
|
|||
<PropertyGroup> | |||
<AssemblyTitle>Akka.Tests</AssemblyTitle> | |||
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(NetFrameworkTestVersion);$(NetTestVersion);$(NetCoreTestVersion)</TargetFrameworks> | |||
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">$(NetTestVersion);$(NetCoreTestVersion)</TargetFrameworks> | |||
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(NetFrameworkTestVersion);$(NetTestVersion)</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In a different pull request, we can probably get rid of these conditionals - I believe they were added many years ago for working around issues with Mono execution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
Changes
Drop support for .NET Core 3.1
Checklist
For significant changes, please ensure that the following have been completed (delete if not relevant):