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
* MessagePackObject comparison which have large binary data will be about 2x - 18x slower in .NET 3.5/4.5/4.6(other platforms will not be affected).
626
-
627
624
NEW FEATURES
628
625
* Users of serializer code generator API can specify TextWriter to output. This may improve tooling chain.
629
626
* Users of serializer code generator API can suppress [DebuggerNonUserCode] attribute to enable debugger step in.
@@ -638,7 +635,6 @@ Release 0.9.0 beta2 2017/2/11
638
635
* Fix extra field causes IndexOutOfBoundException when reflection based serializers are used. Issue #199
639
636
* Fix some built-in serializers throws InvalidOperationException instead of SerializationException for type errors. Issue #204
640
637
* Fix a combination of readonly members and collection members incorrect code generation when the type also have deserialization constructor. Issue #207.
641
-
* Fix Windows Native build error. Issue #206.
642
638
* Fix built-in collection serializers such as List<T> serializer causes SecurityException when the program run in restricted environment like Silverlight. Issue #205.
643
639
* Fix null items of complex type in List<T> or Dictionary<TKey, TValue> will not be deserialized as null. Issue #211. (from 0.8.1)
644
640
* Fix types which implement IPackable and IUnpackable but do not have any members cannot be serialized. Issue #202
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security","CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule",Justification="OK, this is SecurityCritical")]
// Note that libc caused compilation error on .NET Native, so the DllImport itself should not be included in the first time.
52
+
#if NETFX_35
53
+
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security","CA5122:PInvokesShouldNotBeSafeCriticalFxCopRule",Justification="OK, this is SecurityCritical")]
0 commit comments