Skip to content

Commit

Permalink
Merge pull request #1350 from robkuz/Fix_DLL_References
Browse files Browse the repository at this point in the history
Fix multiple references for DLL
  • Loading branch information
forki authored Aug 9, 2016
2 parents 8fd20ae + ebf16c5 commit 524ea4a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/FakeLib/FscHelper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,12 @@ type FscParam =
| NoInterfacedata -> arg "nointerfacedata"
| Sig file -> argp "sig" file
| Reference dllPath -> sargp "r" dllPath
| References dllPaths -> dllPaths |> List.map (sargp "r") |> String.concat " "
| References dllPaths ->
dllPaths
|> List.map (sargp "r")
|> List.map (fun x -> sprintf "\"%s\"" x)
|> String.concat " "
|> (fun x -> x.Substring(1, x.Length - 2))
| Win32res file -> argp "win32res" file
| Win32Manifest file -> argp "win32manifest" file
| NoWin32Manifest -> arg "nowin32manifest"
Expand Down

0 comments on commit 524ea4a

Please sign in to comment.