F# powerpack and distribution

Posted by rwallace on Stack Overflow See other posts from Stack Overflow or by rwallace
Published on 2010-05-28T20:22:41Z Indexed on 2010/05/28 23:32 UTC
Read the original article Hit count: 197

Filed under:
|

I need arbitrary precision rational numbers, which I'm given to understand are available in the F# powerpack. My question is about the mechanics of distribution; my program needs to be able to compile and run both on Windows/.Net and Linux/Mono at least, since I have potential users on both platforms. As I understand it, the best procedure is:

  1. Download the powerpack .zip, not the installer.

  2. Copy the DLL into my program directory.

  3. Copy the accompanying license file into my program directory, to make sure everything is above board.

  4. Declare references and go ahead and use the functions I need.

  5. Ship the above files along with my source and binary, and since the DLL uses byte code, it will work fine on any platform.

Is this the correct procedure? Am I missing anything?

© Stack Overflow or respective owner

Related posts about F#

Related posts about distribution