Use the Build target instead of Rebuild in FAKE to avoid redundant rebuilds.
authorJarl Gullberg <jarl.gullberg@gmail.com>
Sun, 30 Jul 2017 20:36:16 +0000 (22:36 +0200)
committerJarl Gullberg <jarl.gullberg@gmail.com>
Sun, 30 Jul 2017 20:36:16 +0000 (22:36 +0200)
build.fsx

index a440bd3..e43bc00 100644 (file)
--- a/build.fsx
+++ b/build.fsx
@@ -146,7 +146,7 @@ Target "Clean" (fun _ ->
 
 Target "Build" (fun _ ->
     activeProjects
-    |> MSBuildRelease "" "Rebuild"
+    |> MSBuildRelease "" "Build"
     |> ignore
 )