Browse Source

Build: force v4 mono runtime, cosmetics

pull/222/head
Christoph Ruegg 12 years ago
parent
commit
b1bb82f905
  1. 1
      build.fsx
  2. 4
      build.sh
  3. 1
      vagrant-bootstrap.sh

1
build.fsx

@ -31,6 +31,7 @@ let buildPart = "0" // TODO: Fetch from TC
let assemblyVersion = release.AssemblyVersion + "." + buildPart
let packageVersion = release.NugetVersion
let releaseNotes = release.Notes |> List.map (fun l -> l.Replace("*","").Replace("`","")) |> toLines
trace (sprintf "Building Math.NET Numerics %s" release.NugetVersion)
let summary = "Math.NET Numerics, providing methods and algorithms for numerical computations in science, engineering and every day use."
let description = "Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. "

4
build.sh

@ -1,5 +1,5 @@
#!/bin/bash
if [ ! -f packages/FAKE/tools/FAKE.exe ]; then
mono .nuget/NuGet.exe install FAKE -OutputDirectory packages -ExcludeVersion
mono --runtime=v4.0 .nuget/NuGet.exe install FAKE -OutputDirectory packages -ExcludeVersion
fi
mono packages/FAKE/tools/FAKE.exe build.fsx $@
mono --runtime=v4.0 packages/FAKE/tools/FAKE.exe build.fsx $@

1
vagrant-bootstrap.sh

@ -4,3 +4,4 @@ apt-get update
apt-get -y install mono-complete
apt-get -y install mono-tools-devel
apt-get -y install fsharp
mozroots --import --sync

Loading…
Cancel
Save