We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fd20ae + ebf16c5 commit 524ea4aCopy full SHA for 524ea4a
src/app/FakeLib/FscHelper.fs
@@ -392,7 +392,12 @@ type FscParam =
392
| NoInterfacedata -> arg "nointerfacedata"
393
| Sig file -> argp "sig" file
394
| Reference dllPath -> sargp "r" dllPath
395
- | References dllPaths -> dllPaths |> List.map (sargp "r") |> String.concat " "
+ | References dllPaths ->
396
+ dllPaths
397
+ |> List.map (sargp "r")
398
+ |> List.map (fun x -> sprintf "\"%s\"" x)
399
+ |> String.concat " "
400
+ |> (fun x -> x.Substring(1, x.Length - 2))
401
| Win32res file -> argp "win32res" file
402
| Win32Manifest file -> argp "win32manifest" file
403
| NoWin32Manifest -> arg "nowin32manifest"
0 commit comments