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

Commit

Permalink
Pinning versions for 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkm committed Nov 18, 2016
1 parent 66859fa commit 74c9194
Show file tree
Hide file tree
Showing 56 changed files with 400 additions and 397 deletions.
7 changes: 4 additions & 3 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-release/api/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
<clear />
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
<add key="AspNetCore" value="https://dotnet.myget.org/f/aspnetcore-master/api/v3/index.json" />
</packageSources>
</configuration>
18 changes: 9 additions & 9 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.1.0-*",
"Microsoft.AspNetCore.Mvc": "1.1.0-*",
"Microsoft.AspNetCore.Diagnostics": "1.1.0",
"Microsoft.AspNetCore.Mvc": "1.1.0",
"Microsoft.AspNetCore.Razor.Tools": {
"type": "build",
"version": "1.0.0-*"
"version": "1.1.0-preview4-final"
},
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.1.0-*",
"Microsoft.Extensions.Configuration.Json": "1.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
"Microsoft.AspNetCore.StaticFiles": "1.1.0",
"Microsoft.Extensions.Configuration.Json": "1.1.0",
"Microsoft.Extensions.Logging.Console": "1.1.0"
},
"publishOptions": {
"include": [
Expand All @@ -33,7 +33,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
Expand Down
20 changes: 10 additions & 10 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.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,32 +20,32 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Routing.Abstractions": "1.1.0-*",
"Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.CopyOnWriteDictionary.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.HashCodeCombiner.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Net.Http.Headers": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Net.Http.Headers": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {},
"netstandard1.3": {
"dependencies": {
"Microsoft.CSharp": "4.3.0-*",
"System.ComponentModel.TypeConverter": "4.3.0-*"
"Microsoft.CSharp": "4.3.0",
"System.ComponentModel.TypeConverter": "4.3.0"
}
}
}
Expand Down
10 changes: 5 additions & 5 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.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,16 +20,16 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.1.0-*",
"Microsoft.AspNetCore.Mvc.Core": "1.1.0",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"NETStandard.Library": "1.6.1-*"
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {},
Expand Down
40 changes: 20 additions & 20 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.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,43 +20,43 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authorization": "1.1.0-*",
"Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-*",
"Microsoft.AspNetCore.Http": "1.1.0-*",
"Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0-*",
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0-*",
"Microsoft.AspNetCore.Routing": "1.1.0-*",
"Microsoft.AspNetCore.Authorization": "1.1.0",
"Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
"Microsoft.AspNetCore.Http": "1.1.0",
"Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
"Microsoft.AspNetCore.Routing": "1.1.0",
"Microsoft.AspNetCore.Routing.DecisionTree.Sources": {
"type": "build",
"version": "1.1.0-*"
"version": "1.1.0-rtm-22752"
},
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.DependencyModel": "1.1.0-*",
"Microsoft.Extensions.FileProviders.Abstractions": "1.1.0-*",
"Microsoft.Extensions.DependencyModel": "1.1.0",
"Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
"Microsoft.Extensions.HashCodeCombiner.Sources": {
"type": "build",
"version": "1.1.0-*"
"version": "1.1.0-rtm-22752"
},
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.1.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"Microsoft.Extensions.PlatformAbstractions": "1.1.0",
"Microsoft.Extensions.PropertyActivator.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.SecurityHelper.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"NETStandard.Library": "1.6.1-*",
"System.Buffers": "4.3.0-*",
"System.Diagnostics.DiagnosticSource": "4.3.0-*"
"NETStandard.Library": "1.6.1",
"System.Buffers": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.3.0"
},
"frameworks": {
"net451": {},
Expand Down
8 changes: 4 additions & 4 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.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -21,9 +21,9 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Cors": "1.1.0-*",
"Microsoft.AspNetCore.Mvc.Core": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.AspNetCore.Cors": "1.1.0",
"Microsoft.AspNetCore.Mvc.Core": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {},
Expand Down
14 changes: 7 additions & 7 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.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -20,17 +20,17 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.1.0-*",
"Microsoft.AspNetCore.Mvc.Core": "1.1.0",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.CopyOnWriteDictionary.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.Localization": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.Localization": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {
Expand All @@ -40,7 +40,7 @@
},
"netstandard1.6": {
"dependencies": {
"System.ComponentModel.Annotations": "4.3.0-*"
"System.ComponentModel.Annotations": "4.3.0"
}
}
}
Expand Down
10 changes: 5 additions & 5 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.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -21,13 +21,13 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.JsonPatch": "1.1.0-*",
"Microsoft.AspNetCore.Mvc.Core": "1.1.0-*",
"Microsoft.AspNetCore.JsonPatch": "1.1.0",
"Microsoft.AspNetCore.Mvc.Core": "1.1.0",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"NETStandard.Library": "1.6.1-*"
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {},
Expand Down
14 changes: 7 additions & 7 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.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -21,16 +21,16 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.1.0-*",
"Microsoft.AspNetCore.Mvc.Core": "1.1.0",
"Microsoft.Extensions.ClosedGenericMatcher.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"NETStandard.Library": "1.6.1-*"
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {
Expand All @@ -41,8 +41,8 @@
},
"netstandard1.6": {
"dependencies": {
"System.Runtime.Serialization.Xml": "4.3.0-*",
"System.Xml.XmlSerializer": "4.3.0-*"
"System.Runtime.Serialization.Xml": "4.3.0",
"System.Xml.XmlSerializer": "4.3.0"
}
}
}
Expand Down
14 changes: 7 additions & 7 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.1.0-*",
"version": "1.1.0",
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
Expand All @@ -10,15 +10,15 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Localization": "1.1.0-*",
"Microsoft.AspNetCore.Mvc.Razor": "1.1.0-*",
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
"Microsoft.Extensions.Localization": "1.1.0-*",
"Microsoft.AspNetCore.Localization": "1.1.0",
"Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
"Microsoft.Extensions.DependencyInjection": "1.1.0",
"Microsoft.Extensions.Localization": "1.1.0",
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"NETStandard.Library": "1.6.1-*"
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {},
Expand Down
14 changes: 7 additions & 7 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.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -22,20 +22,20 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Razor.Runtime": "1.1.0-*",
"Microsoft.Extensions.Caching.Memory": "1.1.0-*",
"Microsoft.Extensions.FileProviders.Physical": "1.1.0-*",
"Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
"Microsoft.Extensions.Caching.Memory": "1.1.0",
"Microsoft.Extensions.FileProviders.Physical": "1.1.0",
"Microsoft.Extensions.PropertyHelper.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"NETStandard.Library": "1.6.1-*"
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {},
"netstandard1.6": {
"dependencies": {
"System.ComponentModel.TypeConverter": "4.3.0-*"
"System.ComponentModel.TypeConverter": "4.3.0"
}
}
}
Expand Down
Loading

0 comments on commit 74c9194

Please sign in to comment.