Skip to content

Instantly share code, notes, and snippets.

@khellang
Created December 29, 2014 16:08
Show Gist options
  • Save khellang/9fb9d8622cc3a317c68c to your computer and use it in GitHub Desktop.
Save khellang/9fb9d8622cc3a317c68c to your computer and use it in GitHub Desktop.
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