FSharpPlus
FSharpPlus copied to clipboard
Should probably reference the nuget package, not the local dll, on the website?
I've seen a sample on the website, which looks like this:
#r @"../../src/FSharpPlus/bin/Release/net45/FSharpPlus.dll"
open FSharpPlus
But it's probably a good idea to show real life usage, like this:
#r "nuget:FSharpPlus"
open FSharpPlus
And for developers, it would be
#i "MyPath/Debug/bin"
#r "nuget:FSharpPlus"
open FSharpPlus
But I didn't get how to modify the website, so opened an issue.
I agree. The docs should be rendered so that the ref paths show.
#435 is pending merge which address the first part.
You could add a lot of :
(**
```f#
#r @"nuget: FSharpPlus"
```
*)
et.c.
Implemented in #489