forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
66 lines (62 loc) · 1.68 KB
/
project.json
File metadata and controls
66 lines (62 loc) · 1.68 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
{
"version": "2.3.1",
"dependencies": {
"dotnet-test-xunit": "2.2.0-preview2-build1029",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0",
"Microsoft.NETCore.Platforms": "1.0.2",
"xunit": "2.2.0-beta4-build3444",
"JavaScriptEngineSwitcher.ChakraCore": "2.3.1",
"JavaScriptEngineSwitcher.ChakraCore.Native.debian-x64": "2.3.1",
"JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64": "2.3.1",
"JavaScriptEngineSwitcher.ChakraCore.Native.win8-arm": "2.3.1",
"JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "2.3.1",
"JavaScriptEngineSwitcher.ChakraCore.Native.win-x86": "2.3.1",
"JavaScriptEngineSwitcher.Core": "2.2.0",
"JavaScriptEngineSwitcher.Jint": "2.3.0",
"JavaScriptEngineSwitcher.Msie": "2.3.1",
"JavaScriptEngineSwitcher.Vroom": "2.2.0"
},
"buildOptions": {
"warningsAsErrors": true,
"emitEntryPoint": false,
"embed": {
"includeFiles": [ "Resources/cube.js", "Resources/power.js" ]
}
},
"testRunner": "xunit",
"frameworks": {
"netcoreapp1.0": {
"imports": [
"dnxcore50",
"portable-net451+win8"
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.3",
"type": "platform"
}
},
"buildOptions": {
"compile": {
"exclude": [ "Jurassic/**/*.*", "V8/**/*.*" ]
}
}
},
"net451": {
"dependencies": {
"JavaScriptEngineSwitcher.Jurassic": "2.3.1",
"JavaScriptEngineSwitcher.V8": "2.2.0",
"JavaScriptEngineSwitcher.V8.Native.win-x64": "2.2.0",
"JavaScriptEngineSwitcher.V8.Native.win-x86": "2.2.0"
},
"frameworkAssemblies": {
"System.Drawing": "4.0.0.0"
},
"buildOptions": {
"compile": {
"exclude": [ "Interop/Drawing/**/*.*" ]
}
}
}
}
}