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
2 changes: 1 addition & 1 deletion BARS-Client-V2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.3" />
Copy link

Choose a reason for hiding this comment

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

Version mismatch: Microsoft.Extensions.Http is v10.0.3 while Microsoft.Extensions.Hosting and Microsoft.Extensions.Logging.Console remain at v9.0.9 (lines 38-39). This creates incompatibility as the project targets .NET 8.0 but v10.x packages are for .NET 10.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.9" />
Prompt To Fix With AI
This is a comment left during a code review.
Path: BARS-Client-V2.csproj
Line: 40:40

Comment:
Version mismatch: `Microsoft.Extensions.Http` is v10.0.3 while `Microsoft.Extensions.Hosting` and `Microsoft.Extensions.Logging.Console` remain at v9.0.9 (lines 38-39). This creates incompatibility as the project targets .NET 8.0 but v10.x packages are for .NET 10.0.

```suggestion
    <PackageReference Include="Microsoft.Extensions.Http" Version="9.0.9" />
```

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" />
</ItemGroup>
Expand Down
Loading