Skip to content

Commit

Permalink
Merge pull request #2021 from JarnoNijboer/fix-2020
Browse files Browse the repository at this point in the history
Fix #2020 add slash instead of backslash on a non windows platform
  • Loading branch information
matthid authored Jul 21, 2018
2 parents 1f8de05 + 3751c0d commit 98074fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/Fake.DotNet.MSBuild/MSBuild.fs
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,8 @@ module MSBuild =
match output with
| Some path ->
(fun project ->
let outputPath = path |> String.trimSeparator
("OutputPath", (sprintf @"%s\" outputPath)) :: (properties project)
let outputPath = (path |> String.trimSeparator) + Path.directorySeparator
("OutputPath", outputPath) :: (properties project)
)
| None -> properties

Expand Down

0 comments on commit 98074fb

Please sign in to comment.