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
This is caused by the new TargetFramework Attribute. The sorting routines in the Framework have changed in .Net Framework 4.5. Before this build, withouit the attribute, the Framework was using the "old" sorting routines. Now it is using the new sorting routines.
You will most likely see different results if there are keys that have the same value.
To work around this:
either make sure that the keys are unique
supress the generation of the attribute by adding a property to your project file, inside the first <PropertyGroup> <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
(this disables the build step that generates the attribute)
An example in which I have rebuilt the array with constant values, the error can also be reproduced with this.
The error throwns in https://github.com/X-Sharp/XSharpPublic/blob/9b4a562c5a4d411be239f68fba9750f3d4313514/src/Runtime/XSharp.RT/Types/Array.prg#L468
, unfortunately I don't see why.
The text was updated successfully, but these errors were encountered: