Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<packageSources>
<clear />
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json" />
<add key="AspNetCore-Patch" value="https://dotnet.myget.org/F/aspnetcore-rel-1-0-3/api/v3/index.json" />
<add key="AspNetCore-Patch" value="https://dotnet.myget.org/F/aspnet-1-0-4-patch/api/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
</configuration>
20 changes: 10 additions & 10 deletions samples/MvcSandbox/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"preserveCompilationContext": true
},
"dependencies": {
"Microsoft.AspNetCore.Diagnostics": "1.0.1",
"Microsoft.AspNetCore.Mvc": "1.0.2",
"Microsoft.AspNetCore.Diagnostics": "1.0.2",
"Microsoft.AspNetCore.Mvc": "1.0.3",
"Microsoft.AspNetCore.Razor.Tools": {
"type": "build",
"version": "1.0.0-preview4-final"
},
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.1",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.2",
"Microsoft.AspNetCore.StaticFiles": "1.0.1",
"Microsoft.Extensions.Configuration.Json": "1.0.1",
"Microsoft.Extensions.Logging.Console": "1.0.1"
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.2",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.3",
"Microsoft.AspNetCore.StaticFiles": "1.0.2",
"Microsoft.Extensions.Configuration.Json": "1.0.2",
"Microsoft.Extensions.Logging.Console": "1.0.2"
},
"publishOptions": {
"include": [
Expand All @@ -25,15 +25,15 @@
]
},
"tools": {
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-*",
"Microsoft.DotNet.Watcher.Tools": "1.0.0-*"
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview4-final",
"Microsoft.DotNet.Watcher.Tools": "1.0.0-preview4-final"
},
"frameworks": {
"net451": {},
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.3",
"version": "1.0.4",
"type": "platform"
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.AspNetCore.Mvc.Abstractions/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,7 +20,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.2",
"Microsoft.AspNetCore.Routing.Abstractions": "1.0.3",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.1",
"type": "build"
Expand All @@ -37,7 +37,7 @@
"version": "1.0.1",
"type": "build"
},
"Microsoft.Net.Http.Headers": "1.0.1"
"Microsoft.Net.Http.Headers": "1.0.2"
},
"frameworks": {
"net451": {},
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNetCore.Mvc.ApiExplorer/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,7 +20,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.0.1",
"type": "build"
Expand Down
16 changes: 8 additions & 8 deletions src/Microsoft.AspNetCore.Mvc.Core/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,22 +20,22 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authorization": "1.0.1",
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.1",
"Microsoft.AspNetCore.Mvc.Abstractions": "1.0.2",
"Microsoft.AspNetCore.Http": "1.0.1",
"Microsoft.AspNetCore.Routing": "1.0.2",
"Microsoft.AspNetCore.Authorization": "1.0.2",
"Microsoft.AspNetCore.Hosting.Abstractions": "1.0.2",
"Microsoft.AspNetCore.Mvc.Abstractions": "1.0.3",
"Microsoft.AspNetCore.Http": "1.0.2",
"Microsoft.AspNetCore.Routing": "1.0.3",
"Microsoft.AspNetCore.Routing.DecisionTree.Sources": {
"type": "build",
"version": "1.0.2"
"version": "1.0.3"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this the only *.Sources package that's been updated?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are a few, you can see all the package version updates in https://github.com/aspnet/Coherence-Patch/pull/40/files#diff-b68e642d223a5f81dc260548f1e0df64.

The *.Sources packages I have seen update are

  • Microsoft.AspNetCore.DataProtection.Sources
  • Microsoft.AspNetCore.DiagnosticsViewPage.Sources
  • Microsoft.AspNetCore.Razor.Test.Sources
  • Microsoft.AspNetCore.Routing.DecisionTree.Sources

Any particular concerns regarding sources packages?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any particular concerns regarding sources packages?

No. I just noticed this was the only .Sources dependency you updated. Your answer makes sense.

},
"Microsoft.Extensions.FileProviders.Abstractions": "1.0.1",
"Microsoft.Extensions.DependencyModel": "1.0.0",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.1",
"type": "build"
},
"Microsoft.Extensions.Logging.Abstractions": "1.0.1",
"Microsoft.Extensions.Logging.Abstractions": "1.0.2",
"Microsoft.Extensions.HashCodeCombiner.Sources": {
"type": "build",
"version": "1.0.1"
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.AspNetCore.Mvc.Cors/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC cross-origin resource sharing (CORS) features.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -21,8 +21,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Cors": "1.0.1",
"Microsoft.AspNetCore.Mvc.Core": "1.0.2"
"Microsoft.AspNetCore.Cors": "1.0.2",
"Microsoft.AspNetCore.Mvc.Core": "1.0.3"
},
"frameworks": {
"net451": {},
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.AspNetCore.Mvc.DataAnnotations/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC metadata and validation system using System.ComponentModel.DataAnnotations.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,7 +20,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.1",
"type": "build"
Expand All @@ -29,7 +29,7 @@
"version": "1.0.1",
"type": "build"
},
"Microsoft.Extensions.Localization": "1.0.1"
"Microsoft.Extensions.Localization": "1.0.2"
},
"frameworks": {
"net451": {
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNetCore.Mvc.Formatters.Json/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC formatters for JSON input and output and for JSON PATCH input using Json.NET.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -22,7 +22,7 @@
},
"dependencies": {
"Microsoft.AspNetCore.JsonPatch": "1.0.0",
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.1",
"type": "build"
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNetCore.Mvc.Formatters.Xml/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC formatters for XML input and output using DataContractSerializer and XmlSerializer.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.1",
"type": "build"
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.AspNetCore.Mvc.Localization/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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",
"version": "1.0.2",
"version": "1.0.3",
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
Expand All @@ -10,10 +10,10 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Localization": "1.0.1",
"Microsoft.AspNetCore.Mvc.Razor": "1.0.2",
"Microsoft.AspNetCore.Localization": "1.0.2",
"Microsoft.AspNetCore.Mvc.Razor": "1.0.3",
"Microsoft.Extensions.DependencyInjection": "1.0.1",
"Microsoft.Extensions.Localization": "1.0.1",
"Microsoft.Extensions.Localization": "1.0.2",
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.0.1",
"type": "build"
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.AspNetCore.Mvc.Razor.Host/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC design time hosting infrastructure for the Razor view engine.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -22,8 +22,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Razor.Runtime": "1.0.1",
"Microsoft.Extensions.Caching.Memory": "1.0.1",
"Microsoft.AspNetCore.Razor.Runtime": "1.0.2",
"Microsoft.Extensions.Caching.Memory": "1.0.2",
"Microsoft.Extensions.FileProviders.Physical": "1.0.1",
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.0.1",
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.AspNetCore.Mvc.Razor/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC Razor view engine for CSHTML files.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -22,8 +22,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.2",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.2",
"Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.3",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.3",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
"Microsoft.Extensions.FileProviders.Composite": "1.0.1",
"Microsoft.Extensions.HashCodeCombiner.Sources": {
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.AspNetCore.Mvc.TagHelpers/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC default tag helpers. Contains tag helpers for anchor tags, HTML input elements, caching, scripts, links (for CSS), and more.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -22,11 +22,11 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Razor": "1.0.2",
"Microsoft.Extensions.Caching.Memory": "1.0.1",
"Microsoft.AspNetCore.Mvc.Razor": "1.0.3",
"Microsoft.Extensions.Caching.Memory": "1.0.2",
"Microsoft.Extensions.FileSystemGlobbing": "1.0.1",
"Microsoft.Extensions.Logging.Abstractions": {
"version": "1.0.1",
"version": "1.0.2",
"type": "build"
},
"Microsoft.Extensions.Primitives": "1.0.1",
Expand Down
16 changes: 8 additions & 8 deletions src/Microsoft.AspNetCore.Mvc.ViewFeatures/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC view rendering features. Contains common types used in most MVC applications as well as view rendering features such as view engines, views, view components, and HTML helpers.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.Mvc.Controller\r\nMicrosoft.AspNetCore.Mvc.ValidateAntiForgeryTokenAttribute\r\nMicrosoft.AspNetCore.Mvc.ViewComponent",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,12 +20,12 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Antiforgery": "1.0.2",
"Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.1",
"Microsoft.AspNetCore.Html.Abstractions": "1.0.1",
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
"Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.2",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.2",
"Microsoft.AspNetCore.Antiforgery": "1.0.3",
"Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.2",
"Microsoft.AspNetCore.Html.Abstractions": "1.0.2",
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
"Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.3",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.3",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.0.1",
"type": "build"
Expand All @@ -46,7 +46,7 @@
"version": "1.0.1",
"type": "build"
},
"Microsoft.Extensions.WebEncoders": "1.0.1",
"Microsoft.Extensions.WebEncoders": "1.0.2",
"Newtonsoft.Json": "9.0.1",
"System.Buffers": "4.0.0"
},
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "Provides compatibility in ASP.NET Core MVC with ASP.NET Web API 2 to simplify migration of existing Web API implementations.\r\nCommonly used types:\r\nSystem.Web.Http.ApiController",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -21,10 +21,10 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.0.2",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.2",
"Microsoft.AspNetCore.Mvc.Core": "1.0.3",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.3",
"Microsoft.AspNet.WebApi.Client": "5.2.2",
"Microsoft.AspNetCore.WebUtilities": "1.0.1",
"Microsoft.AspNetCore.WebUtilities": "1.0.2",
"Microsoft.Extensions.PropertyHelper.Sources": {
"type": "build",
"version": "1.0.1"
Expand Down
20 changes: 10 additions & 10 deletions src/Microsoft.AspNetCore.Mvc/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "ASP.NET Core MVC is a web framework that gives you a powerful, patterns-based way to build dynamic websites and web APIs. ASP.NET Core MVC enables a clean separation of concerns and gives you full control over markup.",
"version": "1.0.2",
"version": "1.0.3",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,15 +20,15 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.2",
"Microsoft.AspNetCore.Mvc.Cors": "1.0.2",
"Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.2",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.2",
"Microsoft.AspNetCore.Mvc.Localization": "1.0.2",
"Microsoft.AspNetCore.Mvc.Razor": "1.0.2",
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.2",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.2",
"Microsoft.Extensions.Caching.Memory": "1.0.1",
"Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.3",
"Microsoft.AspNetCore.Mvc.Cors": "1.0.3",
"Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.3",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.3",
"Microsoft.AspNetCore.Mvc.Localization": "1.0.3",
"Microsoft.AspNetCore.Mvc.Razor": "1.0.3",
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.3",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.3",
"Microsoft.Extensions.Caching.Memory": "1.0.2",
"Microsoft.Extensions.DependencyInjection": "1.0.1",
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.0.1",
Expand Down
Loading