-
Notifications
You must be signed in to change notification settings - Fork 305
/
Copy pathMetadata.fs
41 lines (40 loc) · 1.17 KB
/
Metadata.fs
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
module Fable.Metadata
let coreAssemblies =
[|
"Fable.Core"
"FSharp.Core"
"mscorlib"
"netstandard"
"System.Collections"
"System.Collections.Concurrent"
"System.ComponentModel"
"System.ComponentModel.Primitives"
"System.ComponentModel.TypeConverter"
"System.Console"
"System.Core"
"System.Diagnostics.Debug"
"System.Diagnostics.Tools"
"System.Diagnostics.Tracing"
"System.Globalization"
"System"
"System.IO"
"System.Net.Requests"
"System.Net.WebClient"
"System.Numerics"
"System.Reflection"
"System.Reflection.Extensions"
"System.Reflection.Metadata"
"System.Reflection.Primitives"
"System.Reflection.TypeExtensions"
"System.Runtime"
"System.Runtime.Extensions"
"System.Runtime.Numerics"
"System.Runtime.InteropServices"
"System.Text.Encoding"
"System.Text.Encoding.Extensions"
"System.Text.RegularExpressions"
"System.Threading"
"System.Threading.Tasks"
"System.Threading.Thread"
"System.ValueTuple"
|]