forked from Taritsyn/MsieJavaScriptEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
73 lines (68 loc) · 1.66 KB
/
project.json
File metadata and controls
73 lines (68 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"version": "2.1.2",
"dependencies": {},
"tools": {
"BundlerMinifier.Core": "2.0.238"
},
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
"nowarn": [
"CS1591"
],
"xmlDoc": true
},
"frameworks": {
"netstandard1.3": {
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.TypeConverter": "4.1.0",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Thread": "4.0.0"
},
"buildOptions": {
"compile": {
"exclude": [
"ActiveScript/**/*.*",
"Constants/ComErrorCode.cs",
"Constants/SpecialMemberName.cs",
"Helpers/ComHelpers.cs",
"Helpers/TypeMappingHelpers.cs",
"Resources/NetFrameworkStrings.*",
"HostItemBase.cs",
"HostObject.cs",
"HostType.cs"
]
}
}
},
"net45": {
"buildOptions": {
"embed": [ "Resources/ES5.min.js", "Resources/json2.min.js" ],
"compile": {
"exclude": [
"Helpers/ReflectionHelpers.cs",
"Resources/NetCoreStrings.*",
"Utilities/TypeInfoExtensions.cs"
]
}
}
}
},
"scripts": {
"precompile": [ "dotnet bundle", "../../build resx" ]
}
}