-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Retarget for .net 7 #37
Conversation
Retain net6.0 for those on LTS release Remove .net 5 and netcoreapp 3.1 Change net461 to net462 and drop netstandard2.1
Thanks for the PR. I will take a look when I got time. |
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.
We also need to bump up the version of the packages to 2.0.0
given it is a major update.
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Text.Json" Version="6.0.0" /> | ||
<PackageReference Include="System.Text.Json" Version="7.0.3" /> |
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'm not sure if we should go to the latest version. I reckon the base version 7.0.0
would be enough for most users and leave it to them to use patched versions? Thoughts?
@@ -1,7 +1,7 @@ | |||
<Project> | |||
|
|||
<PropertyGroup> | |||
<TargetFrameworks>netstandard2.0;netstandard2.1;net461</TargetFrameworks> | |||
<TargetFrameworks>netstandard2.0;net462</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'm thinking we should probably add net7.0
and net6.0
to the list to match the latest targeting frameworks of System.Text.Json
.
I'm closing this due to lack of response. This issue has been completed in #43 |
Retain net6.0 for those on LTS release
Remove .net 5 and netcoreapp 3.1
Change net461 to net462 and drop netstandard2.1
Also upgrades third party dependencies - inc. Test frameworks
Addresses: #32