Skip to content

Commit 8df5eaa

Browse files
Target .NET Core App and fix React.Core reference
Demo was only targeting the full .NET Framework. Also added .NET Core App 1.0.
1 parent 03d82d0 commit 8df5eaa

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

tutorial-code/project.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"Microsoft.Extensions.Logging.Debug": "1.0.0",
1717
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
1818
"Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0",
19-
"React.AspNet": "3.0.0-rc1"
19+
"React.AspNet": "3.0.0"
2020
},
2121

2222
"tools": {
@@ -25,7 +25,15 @@
2525
},
2626

2727
"frameworks": {
28-
"net46": { }
28+
"netcoreapp1.0": {
29+
"dependencies": {
30+
"Microsoft.NETCore.App": {
31+
"type": "platform",
32+
"version": "1.0.0"
33+
}
34+
}
35+
},
36+
"net46": {}
2937
},
3038

3139
"buildOptions": {

0 commit comments

Comments
 (0)