Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<PackageVersion Include="Microsoft.Extensions.Configuration.UserSecrets" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="10.0.8" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.8" />
Comment on lines +17 to +18
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

The PR title specifically mentions bumping Microsoft.Extensions.DependencyInjection, but this change is missing from the file. Furthermore, updating only a subset of Microsoft.Extensions packages to 10.0.8 while leaving related packages (like Logging.Console, Logging.Debug, and DependencyInjection) at 10.0.6 often results in version mismatch issues at runtime. These packages should be updated together to ensure compatibility.

Try running the following prompt in your coding agent:

Update all Microsoft.Extensions.* package versions in Directory.Packages.props to 10.0.8.

<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Logging.Debug" Version="10.0.6" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
Expand Down
Loading