Search code examples
c#task-parallel-librarytpl-dataflow

Did TPL Dataflow get cut?


I was going to play around with TPL dataflow, but I can't seem to find it anywhere in VS 2012 (including inside of the extensions and updates/nuget dialog). Did they cut it, or am I just looking in the wrong place?


Solution

  • TPL Dataflow was moved from the framework itself to NuGet. So, now, to use it from your project, you need to get it from NuGet (right click References → Manage NuGet packges).

    The reason given for this change is so that TPL Dataflow could be updated more frequently, not just when the whole framework is updated.