Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d1964f0

Browse filesBrowse files
Change from netstandardapp1.5 to netcoreapp1.0 everywhere
1 parent 999641c commit d1964f0
Copy full SHA for d1964f0

File tree

Expand file treeCollapse file tree

14 files changed

+70
-28
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

14 files changed

+70
-28
lines changed
Open diff view settings
Collapse file

‎samples/angular/MusicStore/project.json‎

Copy file name to clipboardExpand all lines: samples/angular/MusicStore/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,16 @@
2929
"web": "Microsoft.AspNetCore.Server.Kestrel"
3030
},
3131
"frameworks": {
32-
"netstandardapp1.5": {
32+
"netcoreapp1.0": {
3333
"imports": [
3434
"dnxcore50",
3535
"portable-net451+win8"
3636
],
3737
"dependencies": {
38-
"NETStandard.Library": "1.5.0-*"
38+
"Microsoft.NETCore.App": {
39+
"version": "1.0.0-*",
40+
"type": "platform"
41+
}
3942
}
4043
}
4144
},
Collapse file

‎samples/misc/ES2015Transpilation/project.json‎

Copy file name to clipboardExpand all lines: samples/misc/ES2015Transpilation/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,16 @@
2323
"Microsoft.AspNetCore.NodeServices": "1.0.0-*"
2424
},
2525
"frameworks": {
26-
"netstandardapp1.5": {
26+
"netcoreapp1.0": {
2727
"imports": [
2828
"dnxcore50",
2929
"portable-net451+win8"
3030
],
3131
"dependencies": {
32-
"NETStandard.Library": "1.5.0-*"
32+
"Microsoft.NETCore.App": {
33+
"version": "1.0.0-*",
34+
"type": "platform"
35+
}
3336
}
3437
}
3538
},
Collapse file

‎samples/misc/Webpack/project.json‎

Copy file name to clipboardExpand all lines: samples/misc/Webpack/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,16 @@
2828
},
2929

3030
"frameworks": {
31-
"netstandardapp1.5": {
31+
"netcoreapp1.0": {
3232
"imports": [
3333
"dnxcore50",
3434
"portable-net451+win8"
3535
],
3636
"dependencies": {
37-
"NETStandard.Library": "1.5.0-*"
37+
"Microsoft.NETCore.App": {
38+
"version": "1.0.0-*",
39+
"type": "platform"
40+
}
3841
}
3942
}
4043
},
Collapse file

‎samples/react/MusicStore/project.json‎

Copy file name to clipboardExpand all lines: samples/react/MusicStore/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,16 @@
3131
},
3232

3333
"frameworks": {
34-
"netstandardapp1.5": {
34+
"netcoreapp1.0": {
3535
"imports": [
3636
"dnxcore50",
3737
"portable-net451+win8"
3838
],
3939
"dependencies": {
40-
"NETStandard.Library": "1.5.0-*"
40+
"Microsoft.NETCore.App": {
41+
"version": "1.0.0-*",
42+
"type": "platform"
43+
}
4144
}
4245
}
4346
},
Collapse file

‎samples/react/ReactGrid/project.json‎

Copy file name to clipboardExpand all lines: samples/react/ReactGrid/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,16 @@
2222
"web": "Microsoft.AspNetCore.Server.Kestrel"
2323
},
2424
"frameworks": {
25-
"netstandardapp1.5": {
25+
"netcoreapp1.0": {
2626
"imports": [
2727
"dnxcore50",
2828
"portable-net451+win8"
2929
],
3030
"dependencies": {
31-
"NETStandard.Library": "1.5.0-*"
31+
"Microsoft.NETCore.App": {
32+
"version": "1.0.0-*",
33+
"type": "platform"
34+
}
3235
}
3336
}
3437
},
Collapse file

‎src/Microsoft.AspNetCore.AngularServices/project.json‎

Copy file name to clipboardExpand all lines: src/Microsoft.AspNetCore.AngularServices/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,16 @@
1313
"defaultNamespace": "Microsoft.AspNetCore.AngularServices"
1414
},
1515
"frameworks": {
16-
"netstandardapp1.5": {
16+
"netcoreapp1.0": {
1717
"imports": [
1818
"dnxcore50",
1919
"portable-net451+win8"
2020
],
2121
"dependencies": {
22-
"NETStandard.Library": "1.5.0-*"
22+
"Microsoft.NETCore.App": {
23+
"version": "1.0.0-*",
24+
"type": "platform"
25+
}
2326
}
2427
}
2528
},
Collapse file

‎src/Microsoft.AspNetCore.NodeServices/project.json‎

Copy file name to clipboardExpand all lines: src/Microsoft.AspNetCore.NodeServices/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@
1616
"Newtonsoft.Json": "8.0.3"
1717
},
1818
"frameworks": {
19-
"netstandardapp1.5": {
19+
"netcoreapp1.0": {
2020
"imports": [
2121
"dnxcore50",
2222
"portable-net451+win8"
2323
],
2424
"dependencies": {
25-
"NETStandard.Library": "1.5.0-*",
25+
"Microsoft.NETCore.App": {
26+
"version": "1.0.0-*",
27+
"type": "platform"
28+
},
2629
"System.Diagnostics.Process": "4.1.0-*"
2730
}
2831
}
Collapse file

‎src/Microsoft.AspNetCore.ReactServices/project.json‎

Copy file name to clipboardExpand all lines: src/Microsoft.AspNetCore.ReactServices/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,16 @@
1818
"Microsoft.AspNetCore.SpaServices": "1.0.0-*"
1919
},
2020
"frameworks": {
21-
"netstandardapp1.5": {
21+
"netcoreapp1.0": {
2222
"imports": [
2323
"dnxcore50",
2424
"portable-net451+win8"
2525
],
2626
"dependencies": {
27-
"NETStandard.Library": "1.5.0-*"
27+
"Microsoft.NETCore.App": {
28+
"version": "1.0.0-*",
29+
"type": "platform"
30+
}
2831
}
2932
}
3033
}
Collapse file

‎src/Microsoft.AspNetCore.SpaServices/project.json‎

Copy file name to clipboardExpand all lines: src/Microsoft.AspNetCore.SpaServices/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,16 @@
1818
"Microsoft.AspNetCore.NodeServices": "1.0.0-*"
1919
},
2020
"frameworks": {
21-
"netstandardapp1.5": {
21+
"netcoreapp1.0": {
2222
"imports": [
2323
"dnxcore50",
2424
"portable-net451+win8"
2525
],
2626
"dependencies": {
27-
"NETStandard.Library": "1.5.0-*"
27+
"Microsoft.NETCore.App": {
28+
"version": "1.0.0-*",
29+
"type": "platform"
30+
}
2831
}
2932
}
3033
},
Collapse file

‎templates/Angular2Spa/project.json‎

Copy file name to clipboardExpand all lines: templates/Angular2Spa/project.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,16 @@
2828
},
2929

3030
"frameworks": {
31-
"netstandardapp1.5": {
31+
"netcoreapp1.0": {
3232
"imports": [
3333
"dnxcore50",
3434
"portable-net451+win8"
3535
],
3636
"dependencies": {
37-
"NETStandard.Library": "1.5.0-*"
37+
"Microsoft.NETCore.App": {
38+
"version": "1.0.0-*",
39+
"type": "platform"
40+
}
3841
}
3942
}
4043
},

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.