Skip to content

Commit

Permalink
Fix case on MsBuild LogFile option
Browse files Browse the repository at this point in the history
  • Loading branch information
mavnn committed Nov 17, 2015
1 parent 0e09afa commit 9f217f9
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 9f217f9

Please sign in to comment.