我试图将NetMQ安装到我的xamarin应用程序中。
由于NetMQ依赖于AsyncIO,因此无法安装此包,并向我显示以下错误:
Could not install package 'AsyncIO 0.1.18'. You are trying to install this
package into a project that targets '.NETPortable,Version=v4.5,Profile=Profile111',
but the package does not contain any assembly references or content files
that are compatible with that framework. For more information, contact the package author.我该如何解决这个问题呢?
发布于 2016-05-10 15:18:20
AsyncIO 0.1.18 NuGet包和NetMQ 3.3.3.1 NuGet包只包含用于.NET 4.0和.NET 3.5的程序集,因此您不能将其安装到可移植类库项目或Xamarin项目中。
你的选择包括:
发布于 2016-07-16 13:45:01
NetMQ现在的目标是Xamarin和Android,您可以在这里下载:
https://stackoverflow.com/questions/37142481
复制相似问题