Skip to content
Open
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 BARS-Client-V2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.9" />
Comment on lines +38 to 40
Copy link

Choose a reason for hiding this comment

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

Mixed major versions of Microsoft.Extensions.*

Microsoft.Extensions.Hosting and Microsoft.Extensions.Logging.Console are bumped to 10.0.3, but Microsoft.Extensions.Http remains at 9.0.9. These packages share transitive dependencies (e.g., Microsoft.Extensions.DependencyInjection.Abstractions, Microsoft.Extensions.Logging.Abstractions). Mixing major versions 9.x and 10.x can lead to diamond dependency conflicts or unexpected runtime behavior if the resolved transitive versions are incompatible. Consider bumping Microsoft.Extensions.Http to 10.0.x as well, or keeping all three at 9.0.x until a coordinated update can be done.

Prompt To Fix With AI
This is a comment left during a code review.
Path: BARS-Client-V2.csproj
Line: 38:40

Comment:
**Mixed major versions of `Microsoft.Extensions.*`**

`Microsoft.Extensions.Hosting` and `Microsoft.Extensions.Logging.Console` are bumped to 10.0.3, but `Microsoft.Extensions.Http` remains at 9.0.9. These packages share transitive dependencies (e.g., `Microsoft.Extensions.DependencyInjection.Abstractions`, `Microsoft.Extensions.Logging.Abstractions`). Mixing major versions 9.x and 10.x can lead to diamond dependency conflicts or unexpected runtime behavior if the resolved transitive versions are incompatible. Consider bumping `Microsoft.Extensions.Http` to 10.0.x as well, or keeping all three at 9.0.x until a coordinated update can be done.

How can I resolve this? If you propose a fix, please make it concise.

<PackageReference Include="DiscordRichPresence" Version="1.6.1.70" />
<PackageReference Include="SimConnect.NET" Version="0.1.15-beta" />
Expand Down
Loading