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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Identity.Client" Version="4.37.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />

Copilot AI Apr 17, 2026

Copy link

Choose a reason for hiding this comment

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

The project references prebuilt WorkPoint365.WebAPI.* assemblies (via + HintPath) that appear to be built against Newtonsoft.Json v12 (e.g., WorkPoint365.WebAPI.Model.dll contains assembly-qualified type names referencing Newtonsoft.Json, Version=12.0.0.0). Bumping the app to Newtonsoft.Json 13.0.2 changes the loaded assembly version (13.0.0.0) and can cause runtime load/type-resolution failures in .NET Core (no binding redirects). Consider either (1) updating those referenced WorkPoint365 assemblies to versions built against Newtonsoft.Json 13, or (2) keeping Newtonsoft.Json pinned to 12.x to match the referenced binaries.

Suggested change
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />

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

<ItemGroup>
Expand Down