Skip to content

Commit

Permalink
Fixed FscParam.References issue #1161
Browse files Browse the repository at this point in the history
It used to generate "-r:path1;-r:path2;-rpath3" which is wrong
Now it generates "-r:path1 -r:path2 -r:path3"
  • Loading branch information
edgarsanchez committed Jul 16, 2016
1 parent 40dd0ff commit c671ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/FakeLib/FscHelper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ type FscParam =
| NoInterfacedata -> arg "nointerfacedata"
| Sig file -> argp "sig" file
| Reference dllPath -> sargp "r" dllPath
| References dllPaths -> sargmap "r" dllPaths
| References dllPaths -> dllPaths |> List.map (sargp "r") |> String.concat " "
| Win32res file -> argp "win32res" file
| Win32Manifest file -> argp "win32manifest" file
| NoWin32Manifest -> arg "nowin32manifest"
Expand Down

0 comments on commit c671ed2

Please sign in to comment.