|
|
|
|
|
by CraigJPerry
4574 days ago
|
|
On Linux making a standalone binary is surprisingly easy: $ fsharpc file.fs # can run the generated file.exe via mono at this point
$ mkbundle --static file.exe -o file
Now ./file is a statically compiled binary. Easy deployment. |
|
You can always leave the --static flag off, but then your binaries will require the Mono run-time to be installed.