我在哪里可以买到mono';第三方物流数据流?

我在哪里可以买到mono';第三方物流数据流?,mono,task-parallel-library,tpl-dataflow,Mono,Task Parallel Library,Tpl Dataflow,我正在Macbook上使用mono-3.0.10。在mono 3.0发行说明中提到了Tpl.Dataflow,我还注意到Tpl.Dataflow的源代码在mono的github repo主分支中 但是我在本地的mono安装中找不到它 logan@Logans-MBA /Library/Frameworks/Mono.framework {13-06-04 3:47:48} $ find . -name "*.Dataflow.*" ./Versions/3.0.10/lib/mono/4.5

我正在Macbook上使用mono-3.0.10。在mono 3.0发行说明中提到了Tpl.Dataflow,我还注意到Tpl.Dataflow的源代码在mono的github repo主分支中

但是我在本地的mono安装中找不到它

logan@Logans-MBA  /Library/Frameworks/Mono.framework 
{13-06-04 3:47:48} $ find . -name "*.Dataflow.*"
./Versions/3.0.10/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll
logan@Logans-MBA  /Library/Frameworks/Mono.framework 
{13-06-04 3:59:55} $ file ./Versions/3.0.10/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll
./Versions/3.0.10/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll: broken symbolic link to ../gac/System.Threading.Tasks.Dataflow/4.0.0.0__b77a5c561934e089/System.Threading.Tasks.Dataflow.dll
我已经尝试从安装程序中重新安装mono,但没有成功

然后,我尝试了从nuget下载的DLL,出现了以下错误:

/Users/logan/Workspace/Camp/Dragon/ClientEventHandlerDemos/DataflowBlockClientEventHandler.cs(11,13): error CS0012: The type `System.Object' is defined in an assembly that is not referenced. Consider adding a reference to assembly `System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
/Users/logan/Workspace/Camp/Dragon/ClientEventHandlerDemos/DataflowBlockClientEventHandler.cs(11,34): error CS0012: The type `System.Action`1<TInput>' is defined in an assembly that is not referenced. Consider adding a reference to assembly `System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
/Users/logan/Workspace/Camp/Dragon/ClientEventHandlerDemos/DataflowBlockClientEventHandler.cs(11,13):错误CS0012:在未引用的程序集中定义了类型“System.Object”。考虑对程序集“Sytals.RunType,版本=4.0.0.0,Cule=中性,PuxKyToeKe= B03F5F7F11D50A3A”添加一个引用
/Users/logan/Workspace/Camp/Dragon/ClientEventHandlerDemos/DataflowBlockClientEventHandler.cs(11,34):错误CS0012:在未引用的程序集中定义了类型'System.Action'1'。考虑对程序集“Sytals.RunType,版本=4.0.0.0,Cule=中性,PuxKyToeKe= B03F5F7F11D50A3A”添加一个引用
nuget、net45、netcore45和portable-net45共有3个版本。我都试过了,但还是不走运


那么,我在哪里可以找到最新的Tpl.Dataflow与mono兼容?

NuGet上的版本是MS的版本,我并不奇怪它在mono上不兼容。符号链接的问题看起来好像是安装出了问题,但我不知道从哪里着手解决这个问题。