Skip to content

Commit

Permalink
Merge pull request #1008 from mavnn/master
Browse files Browse the repository at this point in the history
Fix case on MsBuild LogFile option
  • Loading branch information
forki committed Nov 17, 2015
2 parents 0e09afa + 9f217f9 commit 18b1f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/FakeLib/MSBuildHelper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ let serializeMSBuildParams (p : MSBuildParams) =
sprintf "%s%s%s"
(match fl.Filename with
| None -> ""
| Some f -> sprintf "logfile=%s;" f)
| Some f -> sprintf "LogFile=%s;" f)
(match fl.Verbosity with
| None -> ""
| Some v -> sprintf "Verbosity=%s;" (verbosityName v))
Expand Down

0 comments on commit 18b1f50

Please sign in to comment.