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
12 changes: 6 additions & 6 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@

<!-- gRPC / Protobuf -->
<PackageVersion Include="Google.Protobuf" Version="3.34.1" />
<PackageVersion Include="Grpc.Net.Client" Version="2.76.0" />
<PackageVersion Include="Grpc.Net.Client" Version="2.80.0" />
<PackageVersion Include="Grpc.Tools" Version="2.80.0" />

<!-- Service Clients & HTTP -->
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.6" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.7" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="10.0.7" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.7" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.7" />
<PackageVersion Include="Polly" Version="8.6.6" />
<PackageVersion Include="Polly.Extensions.Http" Version="3.0.0" />
<PackageVersion Include="System.Text.Json" Version="9.0.14" />
<PackageVersion Include="System.Text.Json" Version="9.0.15" />
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The version of System.Text.Json (9.0.15) is inconsistent with the Microsoft.Extensions.* packages (10.0.7). In the .NET ecosystem, these core libraries are typically released as a synchronized set to ensure compatibility. Using a lower major version for System.Text.Json while using a higher major version for Microsoft.Extensions can lead to dependency conflicts or runtime errors (such as MissingMethodException), as the v10 extensions likely depend on features or signatures introduced in the v10 JSON library. Consider aligning System.Text.Json to version 10.0.7 to maintain consistency across the dependency graph.

    <PackageVersion Include="System.Text.Json" Version="10.0.7" />

<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />

<!-- Blockchain -->
Expand Down
Loading