Skip to content
This repository was archived by the owner on Apr 11, 2021. It is now read-only.

Commit 2eb5732

Browse files
1.0.1 updates #23
1 parent 4f76871 commit 2eb5732

File tree

3 files changed

+63
-61
lines changed

3 files changed

+63
-61
lines changed

WebAPI/BooksServiceSample/src/BookServiceAsyncSample/project.json

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
{
2+
"buildOptions": {
3+
"emitEntryPoint": true,
4+
"preserveCompilationContext": true
5+
},
6+
27
"dependencies": {
38
"Microsoft.NETCore.App": {
4-
"version": "1.0.0",
9+
"version": "1.0.1",
510
"type": "platform"
611
},
7-
"Microsoft.AspNetCore.Mvc": "1.0.0",
8-
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.0",
912
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
1013
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
11-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
1214
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
13-
"Microsoft.EntityFrameworkCore": "1.0.0",
14-
"Microsoft.EntityFrameworkCore.SqlServer": "1.0.0",
1515
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
1616
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
1717
"Microsoft.Extensions.Configuration.Json": "1.0.0",
1818
"Microsoft.Extensions.Logging": "1.0.0",
1919
"Microsoft.Extensions.Logging.Console": "1.0.0",
20-
"Microsoft.Extensions.Logging.Debug": "1.0.0"
20+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
21+
"Microsoft.AspNetCore.Mvc": "1.0.1",
22+
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.1",
23+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
24+
"Microsoft.EntityFrameworkCore": "1.0.1",
25+
"Microsoft.EntityFrameworkCore.SqlServer": "1.0.1"
2126
},
2227

2328
"tools": {
@@ -33,10 +38,7 @@
3338
}
3439
},
3540

36-
"buildOptions": {
37-
"emitEntryPoint": true,
38-
"preserveCompilationContext": true
39-
},
41+
4042

4143
"runtimeOptions": {
4244
"gcServer": true

WebAPI/BooksServiceSample/src/BookServiceClientApp/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
"dependencies": {
88
"Microsoft.NETCore.App": {
9-
"type": "platform",
10-
"version": "1.0.0"
9+
"version": "1.0.1",
10+
"type": "platform"
1111
},
1212
"Newtonsoft.Json": "9.0.1"
1313
},
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,56 @@
11
{
2-
"dependencies": {
3-
"Microsoft.AspNetCore.Mvc": "1.0.0",
4-
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.0",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
6-
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
7-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
8-
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
9-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
10-
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
11-
"Microsoft.Extensions.Configuration.Json": "1.0.0",
12-
"Microsoft.Extensions.Logging": "1.0.0",
13-
"Microsoft.Extensions.Logging.Console": "1.0.0",
14-
"Microsoft.Extensions.Logging.Debug": "1.0.0",
15-
"Microsoft.NETCore.App": {
16-
"version": "1.0.0",
17-
"type": "platform"
18-
},
19-
"Swashbuckle": "6.0.0-beta901"
20-
},
21-
22-
"tools": {
23-
},
24-
25-
"frameworks": {
26-
"netcoreapp1.0": {
27-
"imports": [
28-
"dotnet5.6",
29-
"dnxcore50",
30-
"portable-net45+win8"
31-
]
32-
}
33-
},
34-
352
"buildOptions": {
363
"emitEntryPoint": true,
374
"preserveCompilationContext": true
385
},
396

40-
"runtimeOptions": {
41-
"gcServer": true
42-
},
7+
"dependencies": {
8+
"Microsoft.NETCore.App": {
9+
"version": "1.0.1",
10+
"type": "platform"
11+
},
12+
"Microsoft.AspNetCore.Mvc": "1.0.1",
13+
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "1.0.1",
14+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
15+
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
16+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
17+
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
18+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
19+
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
20+
"Microsoft.Extensions.Configuration.Json": "1.0.0",
21+
"Microsoft.Extensions.Logging": "1.0.0",
22+
"Microsoft.Extensions.Logging.Console": "1.0.0",
23+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
24+
"Swashbuckle": "6.0.0-beta902"
25+
},
4326

44-
"publishOptions": {
45-
"include": [
46-
"wwwroot",
47-
"Views",
48-
"appsettings.json",
49-
"web.config"
50-
]
51-
},
27+
"tools": {
28+
},
5229

53-
"scripts": {
54-
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
55-
}
56-
}
30+
"frameworks": {
31+
"netcoreapp1.0": {
32+
"imports": [
33+
"dotnet5.6",
34+
"dnxcore50",
35+
"portable-net45+win8"
36+
]
37+
}
38+
},
39+
40+
"runtimeOptions": {
41+
"gcServer": true
42+
},
43+
44+
"publishOptions": {
45+
"include": [
46+
"wwwroot",
47+
"Views",
48+
"appsettings.json",
49+
"web.config"
50+
]
51+
},
52+
53+
"scripts": {
54+
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
55+
}
56+
}

0 commit comments

Comments
 (0)