semantic-kernel icon indicating copy to clipboard operation
semantic-kernel copied to clipboard

.Net: Bug: Hard dependency on Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1

Open johnholliday opened this issue 1 year ago • 1 comments

Describe the bug The nuget package fails to resolve because of the hard dependency on the 8.0.1 version of the Microsoft.Extensions.DependencyInjection.Abstractions module, when even the Microsoft.Extensions.DependencyInjection module is declared as (>= 8.0.0).

To Reproduce Steps to reproduce the behavior:

  1. Create a project and add the Microsoft.Extensions.DependencyInjection module version 8.0.0.
  2. Create a separate dependent project and add the Microsoft.SemanticKernel module.
  3. Run the main project
  4. See error

Expected behavior The Microsoft.SemanticKernel module should depend on Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0) instead of (>= 8.0.1).

Screenshots If applicable, add screenshots to help explain your problem.

Platform

  • OS: Windows
  • IDE: Visual Studio 2022
  • Language: C#
  • Source: Microsoft.SemanticKernal 1.15.1

Additional context Add any other context about the problem here.

johnholliday avatar Jul 07 '24 15:07 johnholliday