Skip to content

Commit

Permalink
close #3807 - fixed NRE with build.fsx when not running incrementally (
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb authored Jun 6, 2019
1 parent 00b73df commit 5e39555
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ Target "Build" (fun _ ->
Configuration = configuration
AdditionalArgs = additionalArgs })

getAffectedProjects.Value.Value|> Seq.iter buildProject
match getAffectedProjects.Value with
| Some p -> p |> Seq.iter buildProject
| None -> buildProject solution // build the entire solution if incrementalist is disabled
)

//--------------------------------------------------------------------------------
Expand Down

0 comments on commit 5e39555

Please sign in to comment.