Created
December 29, 2014 16:08
-
-
Save khellang/9fb9d8622cc3a317c68c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let buildMode = getBuildParamOrDefault "buildMode" "Release" | |
let testResultsDir = "./testresults" | |
let appBuildDir = "./src/**/bin" @@ buildMode | |
let testBuildDir = "./test/**/bin" @@ buildMode | |
Target "Clean" (fun _ -> | |
!! appBuildDir | |
++ testBuildDir | |
++ testResultsDir | |
|> CleanDirs | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment