Created
March 17, 2012 17:07
-
-
Save ovatsus/2062683 to your computer and use it in GitHub Desktop.
Script to setup F# Interactive session, loading everything in the current solution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#r "System.Xml.Linq" | |
open System | |
open System.IO | |
open System.Xml.Linq | |
let script = seq { | |
//TODO: this currently loads fsproj's in alphabeticall order, we should instead | |
//build the dependencies graph of the fsproj's and load them in topological sort order | |
for fsProjFile in Directory.GetFiles(__SOURCE_DIRECTORY__, "*.fsproj") do | |
let getElemName name = XName.Get(name, "http://schemas.microsoft.com/developer/msbuild/2003") | |
let getElemValue name (parent:XElement) = | |
let elem = parent.Element(getElemName name) | |
if elem = null || String.IsNullOrEmpty elem.Value then None else Some(elem.Value) | |
let getAttrValue name (elem:XElement) = | |
let attr = elem.Attribute(XName.Get name) | |
if attr = null || String.IsNullOrEmpty attr.Value then None else Some(attr.Value) | |
let (|??) (option1: 'a Option) option2 = | |
if option1.IsSome then option1 else option2 | |
let fsProjFile = Directory.GetFiles(__SOURCE_DIRECTORY__, "*.fsproj") |> Seq.head | |
let fsProjXml = XDocument.Load fsProjFile | |
let refs = | |
fsProjXml.Document.Descendants(getElemName "Reference") | |
|> Seq.choose (fun elem -> getElemValue "HintPath" elem |?? getAttrValue "Include" elem) | |
|> Seq.map (fun ref -> "#r \"" + ref.Replace(@"\", @"\\") + "\"") | |
let fsFiles = | |
fsProjXml.Document.Descendants(getElemName "Compile") | |
|> Seq.choose (fun elem -> getAttrValue "Include" elem) | |
|> Seq.map (fun fsFile -> "#load \"" + fsFile + "\"") | |
yield! refs | |
yield! fsFiles | |
} | |
let tempFile = Path.Combine(__SOURCE_DIRECTORY__, "__temp__.fsx") | |
File.WriteAllLines(tempFile, script) | |
#load "__temp__.fsx" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment