forked from tsai/mathnet-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.
77 lines
1.7 KiB
77 lines
1.7 KiB
// --------------------------------------------------------------------------------------
|
|
// FAKE build script, see http://fsharp.github.io/FAKE
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
#r @"packages/FAKE/tools/FakeLib.dll"
|
|
open Fake
|
|
open Fake.Git
|
|
open Fake.AssemblyInfoFile
|
|
open Fake.ReleaseNotesHelper
|
|
open System
|
|
|
|
Environment.CurrentDirectory <- __SOURCE_DIRECTORY__
|
|
|
|
|
|
// PREPARE
|
|
|
|
Target "Clean" (fun _ -> CleanDirs ["out"; "obj"; "temp"])
|
|
Target "RestorePackages" RestorePackages
|
|
Target "AssemblyInfo" DoNothing
|
|
Target "Prepare" DoNothing
|
|
|
|
"Clean" ==> "Restorepackages" ==> "AssemblyInfo" ==> "Prepare"
|
|
|
|
|
|
// BUILD
|
|
|
|
Target "BuildMain" (fun _ -> !! "MathNet.Numerics.sln" |> MSBuildRelease "" "Rebuild" |> ignore)
|
|
Target "BuildNet35" (fun _ -> !! "MathNet.Numerics.Net35Only.sln" |> MSBuildRelease "" "Rebuild" |> ignore)
|
|
Target "BuildFull" (fun _ -> !! "MathNet.Numerics.Portable.sln" |> MSBuildRelease "" "Rebuild" |> ignore)
|
|
Target "Build" DoNothing
|
|
|
|
"Prepare"
|
|
=?> ("BuildNet35", hasBuildParam "net35")
|
|
=?> ("BuildFull", hasBuildParam "full")
|
|
=?> ("BuildMain", not (hasBuildParam "full" || hasBuildParam "net35"))
|
|
==> "Build"
|
|
|
|
|
|
// TEST
|
|
|
|
Target "Test" (fun _ ->
|
|
!! "out/test/*/*UnitTests*.dll"
|
|
|> NUnit (fun p ->
|
|
{ p with
|
|
DisableShadowCopy = true
|
|
TimeOut = TimeSpan.FromMinutes 30.
|
|
OutputFile = "TestResults.xml" })
|
|
)
|
|
|
|
"Build" ==> "Test"
|
|
|
|
|
|
// DOCUMENTATION
|
|
|
|
Target "Docs" DoNothing
|
|
|
|
"Build" ==> "Docs"
|
|
|
|
|
|
// NUGET
|
|
|
|
Target "NuGet" DoNothing
|
|
|
|
"BuildFull" ==> "NuGet"
|
|
|
|
|
|
// RUN
|
|
|
|
Target "Release" DoNothing
|
|
"Test" ==> "Release"
|
|
"Docs" ==> "Release"
|
|
"NuGet" ==> "Release"
|
|
|
|
Target "All" DoNothing
|
|
"Build" ==> "Test" ==> "All"
|
|
|
|
RunTargetOrDefault "All"
|
|
|