From 874bd78edba31a5a22b96284e1da78b7459d015f Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 30 Jul 2017 22:36:16 +0200 Subject: [PATCH] Use the Build target instead of Rebuild in FAKE to avoid redundant rebuilds. --- build.fsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.fsx b/build.fsx index a440bd39..e43bc00c 100644 --- a/build.fsx +++ b/build.fsx @@ -146,7 +146,7 @@ Target "Clean" (fun _ -> Target "Build" (fun _ -> activeProjects - |> MSBuildRelease "" "Rebuild" + |> MSBuildRelease "" "Build" |> ignore )