I think the problem is string escaping. In the following:
#r "..\packages\FSharp.Data.2.2.5\lib\net40\FSharp.Data.dll"
\n interpreted as a newline, so it is not valid. But in the following:
#r "..\packages\FSharp.Data.2.2.5\lib\portable-net40+sl5+wp8+win8\FSharp.Data.dll"
.. there are no special escape sequences in the line. Both of them should work:
#r @"..\packages\FSharp.Data.2.2.5\lib\net40\FSharp.Data.dll" #r "..\\packages\\FSharp.Data.2.2.5\\lib\\net40\\FSharp.Data.dll"
Tomas petricek
source share