Use the Build target instead of Rebuild in FAKE to avoid redundant rebuilds.

This commit is contained in:
Jarl Gullberg 2017-07-30 22:36:16 +02:00
parent 2aec010225
commit 874bd78edb
No known key found for this signature in database
GPG key ID: 750FF6F6BDA72D23

View file

@ -146,7 +146,7 @@ Target "Clean" (fun _ ->
Target "Build" (fun _ -> Target "Build" (fun _ ->
activeProjects activeProjects
|> MSBuildRelease "" "Rebuild" |> MSBuildRelease "" "Build"
|> ignore |> ignore
) )