The Microsoft.Build.Artifacts package currently has a dependency on System.Threading.Tasks.Dataflow:
This package dependency means that a copy of System.Threading.Tasks.Dataflow.dll is copied into the output of projects using Microsoft.Build.Artifacts.
From what I can tell, this dependency is a mistake. While Microsoft.Build.Artifacts.dll does have a reference to System.Threading.Tasks.Dataflow.dll, the assembly is already shipped inside the package:
There should be no reason to have the package dependency. It would be great to get it removed!
The Microsoft.Build.Artifacts package currently has a dependency on System.Threading.Tasks.Dataflow:
This package dependency means that a copy of
System.Threading.Tasks.Dataflow.dll
is copied into the output of projects using Microsoft.Build.Artifacts.From what I can tell, this dependency is a mistake. While
Microsoft.Build.Artifacts.dll
does have a reference toSystem.Threading.Tasks.Dataflow.dll
, the assembly is already shipped inside the package:There should be no reason to have the package dependency. It would be great to get it removed!