-
Notifications
You must be signed in to change notification settings - Fork 199
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
Upgrade dependencies to allow Microsoft.OData.Core >= 8.0 #936
Comments
I tried to see if I could easily upgrade it, but I'm running into some issues. When you check version 8, you'll see that it only supports .NET 8 The older version 7.21.3 supports .NET Core 3.1, .NET Standard 1.1, .NET Framework 4.5: https://www.nuget.org/packages/Microsoft.OData.Core/7.21.3 Supporting Microsoft.OData.Core 8.0 would mean that we would have to break backwards compatibility and probably create a new major version. I'm fine with that, I just thought I would mention and see what others things. |
Here's a start, but please note, it's incomplete! |
For the reference: OData/odata.net#3073
|
For me, dropping .net7 support is not an issue. The alternative is to multi target and write wrappers (urgh the maintainer is NOT going to like this in the long run), or create separate version for older framework types (sort of the same thing, just without the wrappers, but its still going to be annoying). |
I am just starting to use your awesome library, but unfortunately because I am building tools for Microsoft products I am forced to use the old .Net Framework since most of Microsoft's own products (e.g. Visual Studio family of products, even the latest Power Platform), rely on .Net Framework without any published roadmap to ever move on to .Net. Does this mean that I will not benefit from potential bug fixes in future? I'm fine with not receiving new features as Microsoft products are on the same boat too. |
Microsoft has released the Microsoft.OData.Client version 8.0
https://learn.microsoft.com/en-us/odata/changelog/odatalib-8x
Current Simple.OData.Client version (6.0.1) has dependency set for Microsoft.OData.Core (>= 7.9.4 && < 8.0.0)
The text was updated successfully, but these errors were encountered: