I'm building an Azure Function using .NET 6 and as a dependency I'm using this library. The problem is that Azure Functions requires package Microsoft.Extensions.Configuration.Abstractions version 6.0.0. But this library requires the same package but needs to be greater or equal to 7.0.0.
Each time I want to reference to an member of Microsoft.Extensions.Configuration.Abstractions it gives me this exception:
Exception while executing function: MyFunction. MyFunction.Repository: Could not load file or assembly 'Microsoft.Extensions.Logging.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.
Would it possible to depend on Microsoft.Extensions.Configuration.Abstractions versions greater or equal to 6.0.0?