From c671ed2619b6685e0eecbf7423fd89249f293d1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20S=C3=A1nchez?= Date: Sat, 16 Jul 2016 12:20:23 -0500 Subject: [PATCH] Fixed FscParam.References issue #1161 It used to generate "-r:path1;-r:path2;-rpath3" which is wrong Now it generates "-r:path1 -r:path2 -r:path3" --- src/app/FakeLib/FscHelper.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/FakeLib/FscHelper.fs b/src/app/FakeLib/FscHelper.fs index e17bedda20f..d05b19035ca 100644 --- a/src/app/FakeLib/FscHelper.fs +++ b/src/app/FakeLib/FscHelper.fs @@ -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"