Reputation: 18305
What is the best way of using PSeq in F# 3.0?
There is no powerpack for F# 3.0 and no evidence I could find of PSeq being included in 3.0.
Upvotes: 8
Views: 1176
Reputation: 41290
The easiest solution is to copy PSeq.fs file to your project and compile with F# 3.0.
PSeq
module is a thin wrapper around PLINQ and has no dependency in F# PowerPack so you can use it independently without any problem.
There are other alternatives:
exe.config
file.These techniques are also covered in a similar thread: How to obtain F# powerpack for F# 3.0
Upvotes: 9