Open Jinqiao opened 6 years ago
Thank you for reporting. I'm recognizing and tuckling this.issue with improving stability in Xamarin.
It looks like there's a reference to System.CodeDom
when building against .NET Standard 2.0, but that dependency is not added to the NuGet package.
The following code throws an exception because there are internal types in MsgPack.Serialization.CodeDomSerializers
that require System.CodeDom.dll
but the assembly can't be found:
string assemblyString = "MsgPack, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a2625990d5dc0167";
Type[] types = Assembly.Load(assemblyString).GetTypes();
After I update to 1.0.0-rc, I got the following error message at build time: