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 f1325d0

Browse filesBrowse files
Update 'templates' projects for .NET Core 1.0 RTM
1 parent a986f8d commit f1325d0
Copy full SHA for f1325d0

File tree

Expand file treeCollapse file tree

5 files changed

+228
-78
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

5 files changed

+228
-78
lines changed
Open diff view settings
Collapse file

‎templates/Angular2Spa/project.json‎

Copy file name to clipboardExpand all lines: templates/Angular2Spa/project.json
+45-15Lines changed: 45 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,61 @@
11
{
22
"dependencies": {
33
"Microsoft.NETCore.App": {
4-
"version": "1.0.0-rc2-3002702",
4+
"version": "1.0.0",
55
"type": "platform"
66
},
7+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
78
"Microsoft.AspNetCore.AngularServices": "1.0.0-*",
8-
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
9-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
9+
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
10+
"Microsoft.AspNetCore.Mvc": "1.0.0",
1011
"Microsoft.AspNetCore.Razor.Tools": {
11-
"version": "1.0.0-preview1-final",
12+
"version": "1.0.0-preview2-final",
1213
"type": "build"
1314
},
14-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
15-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
16-
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
17-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
18-
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
19-
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
20-
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
21-
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
15+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
16+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
17+
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
18+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
19+
"Microsoft.Extensions.Configuration.Json": "1.0.0",
20+
"Microsoft.Extensions.Logging": "1.0.0",
21+
"Microsoft.Extensions.Logging.Console": "1.0.0",
22+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
23+
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
24+
"version": "1.0.0-preview2-final",
25+
"type": "build"
26+
},
27+
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
28+
"version": "1.0.0-preview2-final",
29+
"type": "build"
30+
}
2231
},
2332

2433
"tools": {
2534
"Microsoft.AspNetCore.Razor.Tools": {
26-
"version": "1.0.0-preview1-final",
35+
"version": "1.0.0-preview2-final",
2736
"imports": "portable-net45+win8+dnxcore50"
2837
},
2938
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
30-
"version": "1.0.0-preview1-final",
39+
"version": "1.0.0-preview2-final",
3140
"imports": "portable-net45+win8+dnxcore50"
41+
},
42+
"Microsoft.EntityFrameworkCore.Tools": {
43+
"version": "1.0.0-preview2-final",
44+
"imports": [
45+
"portable-net45+win8+dnxcore50",
46+
"portable-net45+win8"
47+
]
48+
},
49+
"Microsoft.Extensions.SecretManager.Tools": {
50+
"version": "1.0.0-preview2-final",
51+
"imports": "portable-net45+win8+dnxcore50"
52+
},
53+
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
54+
"version": "1.0.0-preview2-final",
55+
"imports": [
56+
"portable-net45+win8+dnxcore50",
57+
"portable-net45+win8"
58+
]
3259
}
3360
},
3461

@@ -43,12 +70,15 @@
4370
},
4471

4572
"buildOptions": {
73+
"debugType": "portable",
4674
"emitEntryPoint": true,
4775
"preserveCompilationContext": true
4876
},
4977

5078
"runtimeOptions": {
51-
"gcServer": true
79+
"configProperties": {
80+
"System.GC.Server": true
81+
}
5282
},
5383

5484
"publishOptions": {
Collapse file

‎templates/KnockoutSpa/project.json‎

Copy file name to clipboardExpand all lines: templates/KnockoutSpa/project.json
+46-16Lines changed: 46 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,61 @@
11
{
22
"dependencies": {
33
"Microsoft.NETCore.App": {
4-
"version": "1.0.0-rc2-3002702",
4+
"version": "1.0.0",
55
"type": "platform"
66
},
7-
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
8-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
7+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
8+
"Microsoft.AspNetCore.SpaServices": "1.0.0-*",
9+
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
10+
"Microsoft.AspNetCore.Mvc": "1.0.0",
911
"Microsoft.AspNetCore.Razor.Tools": {
10-
"version": "1.0.0-preview1-final",
12+
"version": "1.0.0-preview2-final",
1113
"type": "build"
1214
},
13-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
14-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
15-
"Microsoft.AspNetCore.SpaServices": "1.0.0-*",
16-
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
17-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
18-
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
19-
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
20-
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
21-
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
15+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
16+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
17+
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
18+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
19+
"Microsoft.Extensions.Configuration.Json": "1.0.0",
20+
"Microsoft.Extensions.Logging": "1.0.0",
21+
"Microsoft.Extensions.Logging.Console": "1.0.0",
22+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
23+
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
24+
"version": "1.0.0-preview2-final",
25+
"type": "build"
26+
},
27+
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
28+
"version": "1.0.0-preview2-final",
29+
"type": "build"
30+
}
2231
},
2332

2433
"tools": {
2534
"Microsoft.AspNetCore.Razor.Tools": {
26-
"version": "1.0.0-preview1-final",
35+
"version": "1.0.0-preview2-final",
2736
"imports": "portable-net45+win8+dnxcore50"
2837
},
2938
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
30-
"version": "1.0.0-preview1-final",
39+
"version": "1.0.0-preview2-final",
3140
"imports": "portable-net45+win8+dnxcore50"
41+
},
42+
"Microsoft.EntityFrameworkCore.Tools": {
43+
"version": "1.0.0-preview2-final",
44+
"imports": [
45+
"portable-net45+win8+dnxcore50",
46+
"portable-net45+win8"
47+
]
48+
},
49+
"Microsoft.Extensions.SecretManager.Tools": {
50+
"version": "1.0.0-preview2-final",
51+
"imports": "portable-net45+win8+dnxcore50"
52+
},
53+
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
54+
"version": "1.0.0-preview2-final",
55+
"imports": [
56+
"portable-net45+win8+dnxcore50",
57+
"portable-net45+win8"
58+
]
3259
}
3360
},
3461

@@ -43,12 +70,15 @@
4370
},
4471

4572
"buildOptions": {
73+
"debugType": "portable",
4674
"emitEntryPoint": true,
4775
"preserveCompilationContext": true
4876
},
4977

5078
"runtimeOptions": {
51-
"gcServer": true
79+
"configProperties": {
80+
"System.GC.Server": true
81+
}
5282
},
5383

5484
"publishOptions": {
Collapse file

‎templates/ReactReduxSpa/project.json‎

Copy file name to clipboardExpand all lines: templates/ReactReduxSpa/project.json
+46-16Lines changed: 46 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,61 @@
11
{
22
"dependencies": {
33
"Microsoft.NETCore.App": {
4-
"version": "1.0.0-rc2-3002702",
4+
"version": "1.0.0",
55
"type": "platform"
66
},
7-
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
8-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
7+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
8+
"Microsoft.AspNetCore.ReactServices": "1.0.0-*",
9+
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
10+
"Microsoft.AspNetCore.Mvc": "1.0.0",
911
"Microsoft.AspNetCore.Razor.Tools": {
10-
"version": "1.0.0-preview1-final",
12+
"version": "1.0.0-preview2-final",
1113
"type": "build"
1214
},
13-
"Microsoft.AspNetCore.ReactServices": "1.0.0-*",
14-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
15-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
16-
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
17-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
18-
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
19-
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
20-
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
21-
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
15+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
16+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
17+
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
18+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
19+
"Microsoft.Extensions.Configuration.Json": "1.0.0",
20+
"Microsoft.Extensions.Logging": "1.0.0",
21+
"Microsoft.Extensions.Logging.Console": "1.0.0",
22+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
23+
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
24+
"version": "1.0.0-preview2-final",
25+
"type": "build"
26+
},
27+
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
28+
"version": "1.0.0-preview2-final",
29+
"type": "build"
30+
}
2231
},
2332

2433
"tools": {
2534
"Microsoft.AspNetCore.Razor.Tools": {
26-
"version": "1.0.0-preview1-final",
35+
"version": "1.0.0-preview2-final",
2736
"imports": "portable-net45+win8+dnxcore50"
2837
},
2938
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
30-
"version": "1.0.0-preview1-final",
39+
"version": "1.0.0-preview2-final",
3140
"imports": "portable-net45+win8+dnxcore50"
41+
},
42+
"Microsoft.EntityFrameworkCore.Tools": {
43+
"version": "1.0.0-preview2-final",
44+
"imports": [
45+
"portable-net45+win8+dnxcore50",
46+
"portable-net45+win8"
47+
]
48+
},
49+
"Microsoft.Extensions.SecretManager.Tools": {
50+
"version": "1.0.0-preview2-final",
51+
"imports": "portable-net45+win8+dnxcore50"
52+
},
53+
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
54+
"version": "1.0.0-preview2-final",
55+
"imports": [
56+
"portable-net45+win8+dnxcore50",
57+
"portable-net45+win8"
58+
]
3259
}
3360
},
3461

@@ -43,12 +70,15 @@
4370
},
4471

4572
"buildOptions": {
73+
"debugType": "portable",
4674
"emitEntryPoint": true,
4775
"preserveCompilationContext": true
4876
},
4977

5078
"runtimeOptions": {
51-
"gcServer": true
79+
"configProperties": {
80+
"System.GC.Server": true
81+
}
5282
},
5383

5484
"publishOptions": {
Collapse file

‎templates/ReactSpa/project.json‎

Copy file name to clipboardExpand all lines: templates/ReactSpa/project.json
+46-16Lines changed: 46 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,61 @@
11
{
22
"dependencies": {
33
"Microsoft.NETCore.App": {
4-
"version": "1.0.0-rc2-3002702",
4+
"version": "1.0.0",
55
"type": "platform"
66
},
7-
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
8-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
7+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
8+
"Microsoft.AspNetCore.ReactServices": "1.0.0-*",
9+
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
10+
"Microsoft.AspNetCore.Mvc": "1.0.0",
911
"Microsoft.AspNetCore.Razor.Tools": {
10-
"version": "1.0.0-preview1-final",
12+
"version": "1.0.0-preview2-final",
1113
"type": "build"
1214
},
13-
"Microsoft.AspNetCore.ReactServices": "1.0.0-*",
14-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
15-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
16-
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
17-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
18-
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
19-
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
20-
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
21-
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
15+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
16+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
17+
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
18+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
19+
"Microsoft.Extensions.Configuration.Json": "1.0.0",
20+
"Microsoft.Extensions.Logging": "1.0.0",
21+
"Microsoft.Extensions.Logging.Console": "1.0.0",
22+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
23+
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
24+
"version": "1.0.0-preview2-final",
25+
"type": "build"
26+
},
27+
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
28+
"version": "1.0.0-preview2-final",
29+
"type": "build"
30+
}
2231
},
2332

2433
"tools": {
2534
"Microsoft.AspNetCore.Razor.Tools": {
26-
"version": "1.0.0-preview1-final",
35+
"version": "1.0.0-preview2-final",
2736
"imports": "portable-net45+win8+dnxcore50"
2837
},
2938
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
30-
"version": "1.0.0-preview1-final",
39+
"version": "1.0.0-preview2-final",
3140
"imports": "portable-net45+win8+dnxcore50"
41+
},
42+
"Microsoft.EntityFrameworkCore.Tools": {
43+
"version": "1.0.0-preview2-final",
44+
"imports": [
45+
"portable-net45+win8+dnxcore50",
46+
"portable-net45+win8"
47+
]
48+
},
49+
"Microsoft.Extensions.SecretManager.Tools": {
50+
"version": "1.0.0-preview2-final",
51+
"imports": "portable-net45+win8+dnxcore50"
52+
},
53+
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
54+
"version": "1.0.0-preview2-final",
55+
"imports": [
56+
"portable-net45+win8+dnxcore50",
57+
"portable-net45+win8"
58+
]
3259
}
3360
},
3461

@@ -43,12 +70,15 @@
4370
},
4471

4572
"buildOptions": {
73+
"debugType": "portable",
4674
"emitEntryPoint": true,
4775
"preserveCompilationContext": true
4876
},
4977

5078
"runtimeOptions": {
51-
"gcServer": true
79+
"configProperties": {
80+
"System.GC.Server": true
81+
}
5282
},
5383

5484
"publishOptions": {

0 commit comments

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