You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that in the newer versions of the csharp client you have added a dependency on .NET 9 by relying on Microsoft.Extensions.Logging 9.0.0, unless this version of the package is required for the algolia client to work you should allow a range of versions. Atleast .net 8 should be supported as that is the current LTS version.
Describe the solution
Use version ranges and allow .net 8 (which is the current LTS) up to .net 9
Describe the problem
I noticed that in the newer versions of the csharp client you have added a dependency on .NET 9 by relying on Microsoft.Extensions.Logging 9.0.0, unless this version of the package is required for the algolia client to work you should allow a range of versions. Atleast .net 8 should be supported as that is the current LTS version.
Describe the solution
Use version ranges and allow .net 8 (which is the current LTS) up to .net 9
basicly, replace:
with
this will allow all versions of the dependencies up to latest minor on .net 9
https://learn.microsoft.com/en-us/nuget/concepts/package-versioning?tabs=semver20sort#version-ranges
The text was updated successfully, but these errors were encountered: