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

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

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

Hello. Currently, I try to read fixext like a MessagePackObject, but it's not possible. 1. fixext read as Binary (MessagePackObject) instead MessagePackObject\. Some extra proves I found here https://github.com/msgpack/msgpack-cli/wiki/New-message-pack-spec ....

bug
question
need-more-info

If you use the following code to serialize a GUID value: ``` using (var ms = new MemoryStream()) { var packer = Packer.Create(ms, PackerCompatibilityOptions.None); packer.PackObject(Guid.NewGuid()); } ``` I will get...

bug
question

Hello, Do you have any plan to release a version for PCL Xamarin project ? Thanks.

enhancement
question

Hello! I have a large .net project for which i want to use messagepack for wcf serialization. The project uses a lot of untyped DataSets, typed DataSets, and nested DataSets...

enhancement

https://github.com/msgpack/msgpack-cli/blob/922607e3cbcc0bcef7dd7105dd72325e506a4174/src/MsgPack/Serialization/SerializationCompatibilityOptions.cs#L184-L185 When setting this value to true in `PackObject` it still doesn't serialize non-settable properties, although the comment seems to say it should.

There are only `Stream` based APIs in MessagePack for CLI, but following APIs looks usable: * `byte[]` based API. Sometimes (more often as I imagined) array based API is quite...

enhancement

[DataMember(IsRequired = false)] public string NewField { get; set; } It seems adding a new field is not supported. Got an exception "Input string was not in a correct format"

question
wontfix

This project seems to be quite mature and stable however so far it has not reached 1.0.0. As per semver 0.x.y is for the initial development. Is there any reason...

question

Recently we felt the need to remove an unused field from a POCO that we have been serializing and deserializing with MsgPack. Based on the documentation in the [wiki](https://github.com/msgpack/msgpack-cli/wiki/Serialization-attributes#id) about...

``` xbuild MsgPack.mono.sln Build Engine Version 14.0 Mono, Version 4.8.0.0 Copyright (C) 2005-2013 Various Mono authors Build started 2017/6/12 18:25:21. __________________________________________________ /Users/supei/project/msgpack-cli/MsgPack.mono.sln: warning : /Users/supei/project/msgpack-cli/src/MsgPack/MsgPack.csproj: The default XML namespace of...