Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit f735aa8

Browse files
authored
1.0.4 patch train updates (#5788)
* 1.0.4 patch train updates * Update to Microsoft.NETCore.App 1.0.4 and pin cli to 1.0.0-preview2-003154 * Revert tool version updates * spacing * Update NuGet.config
1 parent fa710e6 commit f735aa8

File tree

53 files changed

+286
-286
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+286
-286
lines changed

NuGet.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<packageSources>
44
<clear />
55
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json" />
6-
<add key="AspNetCore-Patch" value="https://dotnet.myget.org/F/aspnetcore-rel-1-0-3/api/v3/index.json" />
6+
<add key="AspNetCore-Patch" value="https://dotnet.myget.org/F/aspnet-1-0-4-patch/api/v3/index.json" />
77
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
88
</packageSources>
9-
</configuration>
9+
</configuration>

samples/MvcSandbox/project.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"preserveCompilationContext": true
66
},
77
"dependencies": {
8-
"Microsoft.AspNetCore.Diagnostics": "1.0.1",
9-
"Microsoft.AspNetCore.Mvc": "1.0.2",
8+
"Microsoft.AspNetCore.Diagnostics": "1.0.2",
9+
"Microsoft.AspNetCore.Mvc": "1.0.3",
1010
"Microsoft.AspNetCore.Razor.Tools": {
1111
"type": "build",
1212
"version": "1.0.0-preview4-final"
1313
},
14-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.1",
15-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.2",
16-
"Microsoft.AspNetCore.StaticFiles": "1.0.1",
17-
"Microsoft.Extensions.Configuration.Json": "1.0.1",
18-
"Microsoft.Extensions.Logging.Console": "1.0.1"
14+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.2",
15+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.3",
16+
"Microsoft.AspNetCore.StaticFiles": "1.0.2",
17+
"Microsoft.Extensions.Configuration.Json": "1.0.2",
18+
"Microsoft.Extensions.Logging.Console": "1.0.2"
1919
},
2020
"publishOptions": {
2121
"include": [
@@ -25,15 +25,15 @@
2525
]
2626
},
2727
"tools": {
28-
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-*",
29-
"Microsoft.DotNet.Watcher.Tools": "1.0.0-*"
28+
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview4-final",
29+
"Microsoft.DotNet.Watcher.Tools": "1.0.0-preview4-final"
3030
},
3131
"frameworks": {
3232
"net451": {},
3333
"netcoreapp1.0": {
3434
"dependencies": {
3535
"Microsoft.NETCore.App": {
36-
"version": "1.0.3",
36+
"version": "1.0.4",
3737
"type": "platform"
3838
}
3939
}

src/Microsoft.AspNetCore.Mvc.Abstractions/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC abstractions and interfaces for action invocation and dispatching, authorization, action filters, formatters, model binding, routing, validation, and more.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.Mvc.IActionResult",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -20,7 +20,7 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.2",
23+
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.3",
2424
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
2525
"version": "1.0.1",
2626
"type": "build"
@@ -37,7 +37,7 @@
3737
"version": "1.0.1",
3838
"type": "build"
3939
},
40-
"Microsoft.Net.Http.Headers": "1.0.1"
40+
"Microsoft.Net.Http.Headers": "1.0.2"
4141
},
4242
"frameworks": {
4343
"net451": {},

src/Microsoft.AspNetCore.Mvc.ApiExplorer/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC API explorer functionality for discovering metadata such as the list of controllers and actions, and their URLs and allowed HTTP methods.",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -20,7 +20,7 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
23+
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
2424
"Microsoft.Extensions.PropertyHelper.Sources": {
2525
"version": "1.0.1",
2626
"type": "build"

src/Microsoft.AspNetCore.Mvc.Core/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC core components. Contains common action result types, attribute routing, application model conventions, API explorer, application parts, filters, formatters, model binding, and more.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.Mvc.AreaAttribute\r\nMicrosoft.AspNetCore.Mvc.BindAttribute\r\nMicrosoft.AspNetCore.Mvc.ControllerBase\r\nMicrosoft.AspNetCore.Mvc.FromBodyAttribute\r\nMicrosoft.AspNetCore.Mvc.FromFormAttribute\r\nMicrosoft.AspNetCore.Mvc.RequireHttpsAttribute\r\nMicrosoft.AspNetCore.Mvc.RouteAttribute",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -20,22 +20,22 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.AspNetCore.Authorization": "1.0.1",
24-
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.1",
25-
"Microsoft.AspNetCore.Mvc.Abstractions": "1.0.2",
26-
"Microsoft.AspNetCore.Http": "1.0.1",
27-
"Microsoft.AspNetCore.Routing": "1.0.2",
23+
"Microsoft.AspNetCore.Authorization": "1.0.2",
24+
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.2",
25+
"Microsoft.AspNetCore.Mvc.Abstractions": "1.0.3",
26+
"Microsoft.AspNetCore.Http": "1.0.2",
27+
"Microsoft.AspNetCore.Routing": "1.0.3",
2828
"Microsoft.AspNetCore.Routing.DecisionTree.Sources": {
2929
"type": "build",
30-
"version": "1.0.2"
30+
"version": "1.0.3"
3131
},
3232
"Microsoft.Extensions.FileProviders.Abstractions": "1.0.1",
3333
"Microsoft.Extensions.DependencyModel": "1.0.0",
3434
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
3535
"version": "1.0.1",
3636
"type": "build"
3737
},
38-
"Microsoft.Extensions.Logging.Abstractions": "1.0.1",
38+
"Microsoft.Extensions.Logging.Abstractions": "1.0.2",
3939
"Microsoft.Extensions.HashCodeCombiner.Sources": {
4040
"type": "build",
4141
"version": "1.0.1"

src/Microsoft.AspNetCore.Mvc.Cors/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC cross-origin resource sharing (CORS) features.",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -21,8 +21,8 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Cors": "1.0.1",
25-
"Microsoft.AspNetCore.Mvc.Core": "1.0.2"
24+
"Microsoft.AspNetCore.Cors": "1.0.2",
25+
"Microsoft.AspNetCore.Mvc.Core": "1.0.3"
2626
},
2727
"frameworks": {
2828
"net451": {},

src/Microsoft.AspNetCore.Mvc.DataAnnotations/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC metadata and validation system using System.ComponentModel.DataAnnotations.",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -20,7 +20,7 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
23+
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
2424
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
2525
"version": "1.0.1",
2626
"type": "build"
@@ -29,7 +29,7 @@
2929
"version": "1.0.1",
3030
"type": "build"
3131
},
32-
"Microsoft.Extensions.Localization": "1.0.1"
32+
"Microsoft.Extensions.Localization": "1.0.2"
3333
},
3434
"frameworks": {
3535
"net451": {

src/Microsoft.AspNetCore.Mvc.Formatters.Json/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC formatters for JSON input and output and for JSON PATCH input using Json.NET.",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -22,7 +22,7 @@
2222
},
2323
"dependencies": {
2424
"Microsoft.AspNetCore.JsonPatch": "1.0.0",
25-
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
25+
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
2626
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
2727
"version": "1.0.1",
2828
"type": "build"

src/Microsoft.AspNetCore.Mvc.Formatters.Xml/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC formatters for XML input and output using DataContractSerializer and XmlSerializer.",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
24+
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
2525
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
2626
"version": "1.0.1",
2727
"type": "build"

src/Microsoft.AspNetCore.Mvc.Localization/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC features that enable globalization and localization of applications.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.Mvc.Localization.IHtmlLocalizer<TResource>\r\nMicrosoft.AspNetCore.Mvc.Localization.IViewLocalizer",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"buildOptions": {
55
"warningsAsErrors": true,
66
"keyFile": "../../tools/Key.snk",
@@ -10,10 +10,10 @@
1010
"xmlDoc": true
1111
},
1212
"dependencies": {
13-
"Microsoft.AspNetCore.Localization": "1.0.1",
14-
"Microsoft.AspNetCore.Mvc.Razor": "1.0.2",
13+
"Microsoft.AspNetCore.Localization": "1.0.2",
14+
"Microsoft.AspNetCore.Mvc.Razor": "1.0.3",
1515
"Microsoft.Extensions.DependencyInjection": "1.0.1",
16-
"Microsoft.Extensions.Localization": "1.0.1",
16+
"Microsoft.Extensions.Localization": "1.0.2",
1717
"Microsoft.Extensions.PropertyHelper.Sources": {
1818
"version": "1.0.1",
1919
"type": "build"

0 commit comments

Comments
 (0)