You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Targeting evaluation uses BitConvert.ToInt32 as seen here. According to ToInt32's documentation, the result is dependent upon the CPU's endianness.
Targeting evaluation should be consistent across CPU architectures. Given the current documented and intended usage is server scenarios, which typically run on x86, I propose to use a replacement that would give results consistent with BitConvert.ToInt32 run on x86 systems.