Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 884
Nick Randell Avatar asked Apr 25 '12 12:04

Nick Randell


1 Answers

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

like image 160
pad Avatar answered Sep 28 '22 02:09

pad