Reputation: 35
Now, the based project has used System.Threading.Tasks
Class on .NET Framework 4.0
, but need to target for .NET Framework 3.5
how to do it? Import any dll? thanks for your answer.
Upvotes: 1
Views: 7350
Reputation: 39956
I think System.Threading.Tasks.Unofficial
or TaskParallelLibrary
are good choices for you. Take a look at the following packages on NuGet:
https://www.nuget.org/packages/System.Threading.Tasks.Unofficial/
https://www.nuget.org/packages/TaskParallelLibrary/
Upvotes: 2