-
Notifications
You must be signed in to change notification settings - Fork 27
net 8.0 package references #105
Comments
Thanks for bringing this up. |
Excellent - It wasn't clear to me that this change was intended (the change history didn't seem to explain what the change was/why) and I was concerned this was unintentional. |
We can keep it open as a reminder for the GA of .net 8. |
Any ETA to fix it? It blocks migration to .NET 8.0 |
Hi everyone, |
In this package and https://github.com/microsoft/kiota-http-dotnet/ the version strings for packages have the range set to
[6.0,8.0)
which appears to block any net8 versions ofSystem.Diagnostics.DiagnosticSource
andSystem.Text.Json
Unless there is a breaking change in net8 for these packages, I think the range should be just
[6.0,)
to allow net 8 versions.If this is meant to pull in the most recent version of 6.0.x (floating versions) to ensure that it includes security fixes etc. then it should be
[6.0.*,)
which will (currently) resolve to 6.0.1 and 6.0.8 respectively and make them the min versions in the nuget package produced.Currently these both resolve to 6.0.0 as stands.
The text was updated successfully, but these errors were encountered: