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

Commit ab994a7

Browse files
committed
MVC patch updates
1 parent d0b6f23 commit ab994a7

File tree

51 files changed

+106
-106
lines changed

Some content is hidden

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

51 files changed

+106
-106
lines changed

samples/MvcSandbox/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"dependencies": {
88
"Microsoft.AspNetCore.Diagnostics": "1.1.3",
9-
"Microsoft.AspNetCore.Mvc": "1.1.4",
9+
"Microsoft.AspNetCore.Mvc": "1.1.5",
1010
"Microsoft.AspNetCore.Razor.Tools": {
1111
"type": "build",
1212
"version": "1.1.0-preview4-final"

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

Lines changed: 1 addition & 1 deletion
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.1.4",
3+
"version": "1.1.5",
44
"packOptions": {
55
"repository": {
66
"type": "git",

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.1.4",
3+
"version": "1.1.5",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -20,7 +20,7 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.AspNetCore.Mvc.Core": "1.1.4",
23+
"Microsoft.AspNetCore.Mvc.Core": "1.1.5",
2424
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
2525
"version": "1.1.1",
2626
"type": "build"

src/Microsoft.AspNetCore.Mvc.Core/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 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.1.4",
3+
"version": "1.1.5",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -23,7 +23,7 @@
2323
"Microsoft.AspNetCore.Authorization": "1.1.3",
2424
"Microsoft.AspNetCore.Hosting.Abstractions": "1.1.3",
2525
"Microsoft.AspNetCore.Http": "1.1.2",
26-
"Microsoft.AspNetCore.Mvc.Abstractions": "1.1.4",
26+
"Microsoft.AspNetCore.Mvc.Abstractions": "1.1.5",
2727
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.2",
2828
"Microsoft.AspNetCore.Routing": "1.1.2",
2929
"Microsoft.AspNetCore.Routing.DecisionTree.Sources": {

src/Microsoft.AspNetCore.Mvc.Cors/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 cross-origin resource sharing (CORS) features.",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -22,7 +22,7 @@
2222
},
2323
"dependencies": {
2424
"Microsoft.AspNetCore.Cors": "1.1.2",
25-
"Microsoft.AspNetCore.Mvc.Core": "1.1.4",
25+
"Microsoft.AspNetCore.Mvc.Core": "1.1.5",
2626
"NETStandard.Library": "1.6.1"
2727
},
2828
"frameworks": {

src/Microsoft.AspNetCore.Mvc.DataAnnotations/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 metadata and validation system using System.ComponentModel.DataAnnotations.",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -20,7 +20,7 @@
2020
"xmlDoc": true
2121
},
2222
"dependencies": {
23-
"Microsoft.AspNetCore.Mvc.Core": "1.1.4",
23+
"Microsoft.AspNetCore.Mvc.Core": "1.1.5",
2424
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
2525
"version": "1.1.1",
2626
"type": "build"

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.1.4",
3+
"version": "1.1.5",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -22,7 +22,7 @@
2222
},
2323
"dependencies": {
2424
"Microsoft.AspNetCore.JsonPatch": "1.1.2",
25-
"Microsoft.AspNetCore.Mvc.Core": "1.1.4",
25+
"Microsoft.AspNetCore.Mvc.Core": "1.1.5",
2626
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
2727
"version": "1.1.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.1.4",
3+
"version": "1.1.5",
44
"packOptions": {
55
"repository": {
66
"type": "git",
@@ -21,7 +21,7 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Mvc.Core": "1.1.4",
24+
"Microsoft.AspNetCore.Mvc.Core": "1.1.5",
2525
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
2626
"version": "1.1.1",
2727
"type": "build"

src/Microsoft.AspNetCore.Mvc.Localization/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 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.1.4",
3+
"version": "1.1.5",
44
"buildOptions": {
55
"warningsAsErrors": true,
66
"keyFile": "../../tools/Key.snk",
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"Microsoft.AspNetCore.Localization": "1.1.3",
14-
"Microsoft.AspNetCore.Mvc.Razor": "1.1.4",
14+
"Microsoft.AspNetCore.Mvc.Razor": "1.1.5",
1515
"Microsoft.Extensions.DependencyInjection": "1.1.1",
1616
"Microsoft.Extensions.Localization": "1.1.3",
1717
"Microsoft.Extensions.PropertyHelper.Sources": {

src/Microsoft.AspNetCore.Mvc.Razor.Host/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "ASP.NET Core MVC design time hosting infrastructure for the Razor view engine.",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"packOptions": {
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)