Add a Reference Via F#'s Interactive Window

f#, f#-interactive

Solution

This seems to work:

> #r "System.Xml.Linq" ;;

Problem

Is it possible to add a reference to a .NET library via F#'s interactive window? For example: ``` > open System.Xml.Linq;; open System.Xml.Linq;; ----------------^^^^ stdin(2,17): error FS0039: The namespace 'Linq' is not defined. > ```

Original source

Related problems