forked from ryansroberts/RDFProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerateSetupScript.fsx
More file actions
41 lines (31 loc) · 1.56 KB
/
GenerateSetupScript.fsx
File metadata and controls
41 lines (31 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#r "System.Xml.Linq"
open System
open System.IO
open System.Xml.Linq
let generateSetupScript dir proj =
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 = Path.Combine(dir, proj + ".fsproj")
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 -> ref.Replace(@"\", @"\\").Split(',').[0])
|> Seq.filter (fun ref -> ref <> "mscorlib" && ref <> "FSharp.Core")
|> Seq.map (fun ref -> "#r \"" + ref + "\"")
|> Seq.toList
let fsFiles =
fsProjXml.Document.Descendants(getElemName "Compile")
|> Seq.choose (fun elem -> getAttrValue "Include" elem)
|> Seq.filter (Path.GetExtension >> ((<>) ".fsi"))
|> Seq.map (fun path -> "#load \"" + path + "\"")
|> Seq.toList
let tempFile = Path.Combine(dir, "__setup__" + proj + "__.fsx")
File.WriteAllLines(tempFile, refs @ fsFiles)