-
-
Notifications
You must be signed in to change notification settings - Fork 133
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
Update the TargetFrameworks #459
base: master
Are you sure you want to change the base?
Conversation
Targeting netstandard2.0 and net6.0 should be enough for the library as that should support all currently supported verions of .Net Framework (4.6.2+) and .NET (6.0+) while allowing it to compile on linux. (Technically .NET Framework 3.5 Service Pack 1 is still supported but we currently don't support that anyway) For the test projects I just went with the latest .NET version as .NET 5.0 isn't supported anymore.
We need to release 3.0.0 before this can go in. |
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.
Maybe, updating the nuget package to the latest version is not a bad idea because of the change on dotnet 8
@@ -3,7 +3,7 @@ | |||
<Import Project="..\_Imports\Test.targets" /> | |||
|
|||
<PropertyGroup> | |||
<TargetFramework>net5.0</TargetFramework> | |||
<TargetFramework>net7.0</TargetFramework> |
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.
<TargetFramework>net7.0</TargetFramework> | |
<TargetFramework>net8.0</TargetFramework> |
@@ -3,7 +3,7 @@ | |||
<Import Project="..\_Imports\Test.targets" /> | |||
|
|||
<PropertyGroup> | |||
<TargetFramework>net5.0</TargetFramework> | |||
<TargetFramework>net7.0</TargetFramework> |
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.
<TargetFramework>net7.0</TargetFramework> | |
<TargetFramework>net8.0</TargetFramework> |
Targeting netstandard2.0 and net6.0 should be enough for the library as that should support all currently supported verions of .Net Framework (4.6.2+) and .NET (6.0+) while allowing it to compile on linux.
(Technically .NET Framework 3.5 Service Pack 1 is still supported but we
currently don't support that anyway)
For the test projects I just went with the latest .NET version as .NET 5.0 isn't supported anymore.