msgpack-cli icon indicating copy to clipboard operation
msgpack-cli copied to clipboard

MessagePack implementation for Common Language Infrastructure / msgpack.org[C#]

Results 85 msgpack-cli issues
Sort by recently updated
recently updated
newest added

Currently, there are some legacy techniques for build artifact versioning, it caused release failure of 1.0.1. We should fix build scripts to use more simple and modern matter for versioning....

enhancement

Is there a recommended way to deserialize (in c#) a message pack object packed in c++ containing a ```std::vector```? I tried ```public List``` but that doesn't seem to be working

question

**Unpacking.UnpackObject** [documentation](http://cli.msgpack.org/doc/html/M_MsgPack_Unpacking_UnpackObject_2.htm) states that this method can throw **UnpackException** and **MessageTypeException**, but it also throws several other unexpected exception types: - **InvalidMessagePackStreamException** - **MessageNotSupportedException** - **OverflowException** You can run the...

bug

I am having a problem understanding the syntax of this project. I am trying to deserialize a complex object and things keep getting out of order. I have the code...

Mac environment: OSX High Serria (10.13.6) mono version: ``` mono --version Mono JIT compiler version 5.18.0.216 (2018-08/f0e466618d1 Fri Nov 30 20:17:18 EST 2018) Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc...

Why can I execute this code in Release mode? ![image](https://user-images.githubusercontent.com/16394348/47770063-e114f200-dd18-11e8-8e3e-74b7499e3e05.png)

need-help

After I update to 1.0.0-rc, I got the following error message at build time: ``` /path/to/MTOUCH: Error MT2002: Failed to resolve "System.CodeDom.CodeParameterDeclarationExpression" reference from "System.CodeDom, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" (MT2002) ```

I have an object that doesn't extend from anything yet when I updated from 0.9.2 to 1.0.0 I get "ExtendedTypeObject is prohibited in this packer." when trying to pack an...

bug

Registering polymorphic objects directly does not work correctly when trying to serialize those objects from other objects. Here is an example: public class Wrapper { public Letters field { get;...

MsgPack-Cli is extremely slow(slower than JSON.NET!) in .NET Core. I think MsgPack-Cli is using reflection based serializer in .NET Core. ```csharp public class MyClass { public int MyProperty { get;...