Where can I find a TPL dataflow version for 4.0?

醉酒当歌 提交于 2019-11-27 08:56:27

I wrote Steve from the TPL dataflow team about this problem and he responded me with the following download link:

http://download.microsoft.com/download/F/9/6/F967673D-58D6-4E3F-8CA9-11769A0A63B1/TPLDataflow.msi

This is a CTP version, but the date matches the Nuget package with version number 4.0, so I think it's the latest version that was compiled against .NET 4.0.

I have the same experience. That is, on my Windows XP SP3 (Visual Studio 2010 + .NET 4.)), Nuget is bringing incompatible packages for .NET 4.5 being identified for .NET 4.0. Happened with Reactive (Rx), Async extensions and some more (I did not keep tracks) so I stopped using Nuget.

I've installed Async CTP (Version 3) + SP1 to it which brought:

  • AsyncCtpLibrary.dll
  • AsyncCtpLibrary_Phone.dll
  • AsyncCtpLibrary_Silverlight.dll
  • AsyncCtpLibrary_Silverlight.dll
  • System.Threading.Tasks.Dataflow.dll
  • System.Windows.Controls.Toolkit.dll
  • System.Windows.Controls.Toolkit.Internals.dll

into <My Documents SubFolder>\Microsoft Visual Studio Async CTP\Samples\ which I now either reference or include into projects.

The .NET 4.5 MSDN docs code examples seem all use HttpClient from System.Net.Http namespace which I've got from download in code.msdn.microsoft.com Introduction to HttpClient

That is, I've got from the latter:

  • System.Json.dll (4.0.20118.13260)
  • System.Net.Http.dll (2.0.20118.13260)
  • System.Net.Http.WebRequest.dll (2.0.20118.13260)
  • System.Net.Http.Formatting.dll (4.0.20118.13260)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!