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
12 changes: 6 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
<PackageVersion Include="Grpc.Core.Api" Version="[2.71.0, 3.0.0)" />
<PackageVersion Include="Grpc.Net.Client" Version="[2.71.0, 3.0.0)" />
<!-- Microsoft/System packages -->
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="6.0.2" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="6.0.1" />
<PackageVersion Include="System.Diagnostics.DiagnosticSource" Version="6.0.2" />
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.9" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.9" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.9" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="10.0.9" />
<PackageVersion Include="System.Diagnostics.DiagnosticSource" Version="10.0.9" />
Comment on lines +20 to +24

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

Upgrading these packages to version 10.0.9 introduces a major version mismatch with the .NET 8 SDK (8.0.421) specified in global.json. This mismatch leads to build failures and restore errors because .NET 10 packages are not supported by the .NET 8 SDK. Downgrade these packages to 8.0.0 (or the latest 8.0.x patch) to maintain compatibility with the .NET 8 SDK.

    <PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
    <PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
    <PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
    <PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.0" />
    <PackageVersion Include="System.Diagnostics.DiagnosticSource" Version="8.0.0" />

<PackageVersion Include="System.Linq.Async" Version="7.0.1" />
<PackageVersion Include="System.ValueTuple" Version="4.6.2" />
<!-- Other third party packages -->
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
<!-- Build-oriented packages -->
<PackageVersion Include="ConfigureAwaitChecker.Analyzer" Version="5.0.0.1" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="10.0.300" />

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

Upgrading Microsoft.SourceLink.GitHub to 10.0.300 is incompatible with the .NET 8 SDK (8.0.421) specified in global.json. SourceLink tooling versions must align with the SDK version. Revert this package to 8.0.0 to avoid build failures.

    <PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />

</ItemGroup>
</Project>
Loading