Skip to content

Commit

Permalink
close akkadotnet#3807 - fixed NRE with build.fsx when not running inc…
Browse files Browse the repository at this point in the history
…rementally (akkadotnet#3818)
  • Loading branch information
Aaronontheweb authored and madmonkey committed Jul 12, 2019
1 parent ee3cb91 commit 38cf8de
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 38cf8de

Please sign in to comment.