Nick Randell
Nick Randell

Reputation: 18305

How to use pseq in F# 3.0?

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

Answers (1)

pad
pad

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:

  • Compile F# PowerPack from source against F# 3.0.
  • Redirect dll usage in a exe.config file.

These techniques are also covered in a similar thread: How to obtain F# powerpack for F# 3.0

Upvotes: 9

Related Questions