Merge pull request #615 from Nihlus/fake-use-build-instead-of-rebuild

Use the Build target instead of Rebuild in FAKE
This commit is contained in:
Jarl Gullberg 2017-07-30 22:53:57 +02:00 committed by GitHub
commit 257b977d57

View file

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