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.
Asked
Active
Viewed 6,302 times
1

Salah Akbari
- 39,330
- 10
- 79
- 109

James
- 35
- 1
- 6
-
1What project? What code? Why would you want to do this? (While formally supported .NET 3.5 was replaced by 4.x years ago.) – Richard Oct 14 '18 at 07:49
-
a shadowsocks project, it is based on .NET 4.0. but on windows7, .Net framework 35 is the default configuration. so need to move to .Net35 – James Oct 15 '18 at 02:22
-
@S.Akbari, add it. :-) – James Nov 11 '18 at 12:14
1 Answers
2
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/

Salah Akbari
- 39,330
- 10
- 79
- 109
-
for the TaskParallelLibrary, is there any doc to descript this package? CLASS description and some uses cases. – James Oct 14 '18 at 08:38
-
@James All the notes and documents should be found here https://www.nuget.org/packages/TaskParallelLibrary/ – Salah Akbari Oct 14 '18 at 08:39