Skip to content

Commit

Permalink
Reduce Logging Dependencies
Browse files Browse the repository at this point in the history
SemanticKernel only uses ILogger and extension methods off of it. We should just be depending on Microsoft.Extensions.Logging.Abstractions, and not Microsoft.Extensions.Logging. The Logging package brings a lot more dependencies with it.
  • Loading branch information
eerhardt committed Jun 1, 2023
1 parent aa80f30 commit e88fd8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
<PackageReference Include="Microsoft.Bcl.HashCode" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="System.Linq.Async" />
<PackageReference Include="System.Text.Json" />
</ItemGroup>
Expand Down

0 comments on commit e88fd8f

Please sign in to comment.