Math.NET Numerics
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
452 B

#!/bin/bash
if test "$OS" = "Windows_NT"
then
# use .Net
[ ! -f tools/paket/paket.exe ] && tools/paket/paket.bootstrapper.exe
tools/paket/paket.exe restore
packages/FAKE/tools/FAKE.exe build.fsx $@
else
# use mono
[ ! -f tools/paket/paket.exe ] && mono --runtime=v4.0 tools/paket/paket.bootstrapper.exe
mono --runtime=v4.0 tools/paket/paket.exe restore
mono --runtime=v4.0 packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build.fsx
fi