Skip to content

Commit 931ba11

Browse files
rmjaSteveSandersonMS
authored andcommitted
net451 support and changed netcoreapp1.0->netstandard1.5 for libraries
1 parent f2e89fd commit 931ba11

File tree

4 files changed

+22
-10
lines changed

4 files changed

+22
-10
lines changed

src/Microsoft.AspNetCore.AngularServices/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"Microsoft.AspNetCore.SpaServices": "1.0.0-*"
1414
},
1515
"frameworks": {
16-
"netcoreapp1.0": {
16+
"net451": {
17+
},
18+
"netstandard1.5": {
1719
"imports": [
1820
"dotnet5.6",
1921
"dnxcore50",

src/Microsoft.AspNetCore.NodeServices/project.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,35 @@
66
},
77
"authors": [ "Microsoft" ],
88
"dependencies": {
9-
"Microsoft.NETCore.App": {
10-
"version": "1.0.0-rc2-*",
11-
"type": "platform"
12-
},
13-
"System.IO.Pipes": "4.0.0-*",
149
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-*",
1510
"Microsoft.Extensions.Configuration.Json": "1.0.0-*",
1611
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
1712
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*",
1813
"Newtonsoft.Json": "8.0.3"
1914
},
2015
"frameworks": {
16+
"net451": {
17+
"frameworkAssemblies": {
18+
"System.Net.Http": "4.0.0.0"
19+
}
20+
},
2121
"netstandard1.3": {
2222
"imports": [
2323
"dotnet5.6",
2424
"dnxcore50",
2525
"portable-net45+win8"
26-
]
26+
],
27+
"dependencies": {
28+
"System.Console": "4.0.0-*",
29+
"System.Diagnostics.Process": "4.1.0-*",
30+
"System.Net.Http": "4.0.1-*",
31+
"System.Text.RegularExpressions": "4.0.12-*"
32+
}
2733
}
2834
},
2935
"buildOptions": {
3036
"embed": [
3137
"Content/**/*"
3238
]
33-
}
39+
}
3440
}

src/Microsoft.AspNetCore.ReactServices/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"Microsoft.AspNetCore.SpaServices": "1.0.0-*"
1414
},
1515
"frameworks": {
16-
"netcoreapp1.0": {
16+
"net451": {
17+
},
18+
"netstandard1.5": {
1719
"imports": [
1820
"dotnet5.6",
1921
"dnxcore50",

src/Microsoft.AspNetCore.SpaServices/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
"Microsoft.AspNetCore.NodeServices": "1.0.0-*"
1313
},
1414
"frameworks": {
15-
"netcoreapp1.0": {
15+
"net451": {
16+
},
17+
"netstandard1.5": {
1618
"imports": [
1719
"dotnet5.6",
1820
"dnxcore50",

0 commit comments

Comments
 (0)