Skip to content

Commit 7146f00

Browse files
committed
Add transitive dependencies to React.AspNet to fix build errors on AppVeyor.
Transitive dependencies work well in Visual Studio, but not as part of a standalone build.
1 parent ce24662 commit 7146f00

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

src/React.AspNet/project.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.5.5-*",
2+
"version": "1.5.6-*",
33
"configurations": {
44
"Debug": {
55
"compilationOptions": {
@@ -15,13 +15,17 @@
1515
}
1616
},
1717
"dependencies": {
18+
"JsPool": "0.3.0",
1819
"Microsoft.Framework.DependencyInjection": "1.0.0-beta7",
1920
"Microsoft.AspNet.Mvc.Core": "6.0.0-beta7",
2021
"Microsoft.AspNet.StaticFiles": "1.0.0-beta7",
2122
"Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta7",
2223
"Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta7",
24+
"MsieJavaScriptEngine": "1.5.1",
2325
"React.Core": "",
24-
"JavaScriptEngineSwitcher.Core": "1.2.4.0"
26+
"JavaScriptEngineSwitcher.Core": "1.2.4.0",
27+
"JavaScriptEngineSwitcher.Msie": "1.2.4",
28+
"JavaScriptEngineSwitcher.V8": "1.2.4"
2529
},
2630
"frameworks": {
2731
"dnx451": { }

src/React.Sample.Mvc6/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"webroot": "wwwroot",
3-
"version": "1.5.5-*",
3+
"version": "1.5.6-*",
44
"dependencies": {
55
"Microsoft.AspNet.Mvc": "6.0.0-beta7",
66
"Microsoft.AspNet.Diagnostics": "1.0.0-beta7",

src/global.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@
44
],
55
"sdk": {
66
"version": "1.0.0-beta7"
7-
}
8-
}
7+
},
8+
"projects": [
9+
"wrap"
10+
]
11+
}

src/wrap/React.Core/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"JavaScriptEngineSwitcher.Core": "1.2.4",
1212
"JavaScriptEngineSwitcher.V8": "1.2.4",
1313
"JSPool": "0.3.0",
14-
"Newtonsoft.Json": "5.0.4",
14+
"Newtonsoft.Json": "6.0.8",
1515
"VroomJs": "1.0.0-*",
1616
"JavaScriptEngineSwitcher.Msie": "1.2.4",
1717
"MsieJavaScriptEngine": "1.5.1"

0 commit comments

Comments
 (0)