Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<ItemGroup>
<PackageReference Include="Baidu.AI" Version="4.15.16" />
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
Copy link

Copilot AI Nov 12, 2025

Choose a reason for hiding this comment

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

Using wildcard versioning for Newtonsoft.Json (13.*) may lead to unpredictable builds and potential compatibility issues. Consider using a specific version like 13.0.3 for consistency with other similar projects in the codebase (e.g., BootstrapBlazor.OCR and BootstrapBlazor.OpenAI.GPT3). This ensures reproducible builds and prevents unexpected breaking changes from minor version updates.

Suggested change
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />

Copilot uses AI. Check for mistakes.
</ItemGroup>

</Project>