Skip to content
This repository has been archived by the owner on Dec 18, 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 f1d0faf commit 6febe40
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 50 deletions.
9 changes: 5 additions & 4 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>
</configuration>
4 changes: 2 additions & 2 deletions samples/LargeResponseApp/project.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "1.1.0-*",
"dependencies": {
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*"
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0"
},
"buildOptions": {
"emitEntryPoint": true
Expand All @@ -11,7 +11,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
Expand Down
8 changes: 4 additions & 4 deletions samples/SampleApp/project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"version": "1.1.0-*",
"dependencies": {
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
"Microsoft.Extensions.Logging.Console": "1.1.0"
},
"buildOptions": {
"emitEntryPoint": true
Expand All @@ -13,7 +13,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
Expand Down
10 changes: 5 additions & 5 deletions src/Microsoft.AspNetCore.Server.Kestrel.Https/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"description": "HTTPS support for the ASP.NET Core Kestrel cross-platform web server.",
"buildOptions": {
"keyFile": "../../tools/Key.snk",
Expand All @@ -20,18 +20,18 @@
]
},
"dependencies": {
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
"Microsoft.Extensions.TaskCache.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.3": {
"dependencies": {
"System.Net.Security": "4.3.0-*"
"System.Net.Security": "4.3.0"
}
}
}
Expand Down
20 changes: 10 additions & 10 deletions src/Microsoft.AspNetCore.Server.Kestrel/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"description": "ASP.NET Core Kestrel cross-platform web server.",
"packOptions": {
"repository": {
Expand All @@ -13,16 +13,16 @@
},
"dependencies": {
"Libuv": "1.9.1",
"Microsoft.AspNetCore.Hosting": "1.1.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"Microsoft.AspNetCore.Hosting": "1.1.0",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"Microsoft.Extensions.TaskCache.Sources": {
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"type": "build"
},
"NETStandard.Library": "1.6.1-*",
"System.Buffers": "4.3.0-*",
"System.Numerics.Vectors": "4.3.0-*",
"System.Threading.Tasks.Extensions": "4.3.0-*"
"NETStandard.Library": "1.6.1",
"System.Buffers": "4.3.0",
"System.Numerics.Vectors": "4.3.0",
"System.Threading.Tasks.Extensions": "4.3.0"
},
"frameworks": {
"net451": {
Expand All @@ -37,8 +37,8 @@
},
"netstandard1.3": {
"dependencies": {
"System.Threading.Thread": "4.3.0-*",
"System.Threading.ThreadPool": "4.3.0-*"
"System.Threading.Thread": "4.3.0",
"System.Threading.ThreadPool": "4.3.0"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@
"version": "1.1.0-*",
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0-*",
"Microsoft.AspNetCore.Testing": "1.1.0-*",
"Microsoft.Extensions.Logging.Testing": "1.1.0-*",
"Moq": "4.6.36-*",
"Newtonsoft.Json": "9.0.1",
"xunit": "2.2.0-*",
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
"Microsoft.CodeCoverage": {
"type": "build",
"version": "1.0.1"
}
},
"Microsoft.Extensions.Logging.Testing": "1.1.0-rtm-22752",
"Moq": "4.6.36-*",
"Newtonsoft.Json": "9.0.1",
"xunit": "2.2.0-*"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
},
"System.Net.Http.WinHttpHandler": "4.3.0-*",
"System.Net.NetworkInformation": "4.3.0-*",
"System.Runtime.Serialization.Primitives": "4.3.0-*"
"System.Net.Http.WinHttpHandler": "4.3.0",
"System.Net.NetworkInformation": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0"
},
"imports": "dnxcore50"
},
Expand Down
18 changes: 9 additions & 9 deletions test/Microsoft.AspNetCore.Server.KestrelTests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@
"version": "1.1.0-*",
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0-*",
"Microsoft.AspNetCore.Testing": "1.1.0-*",
"Moq": "4.6.36-*",
"xunit": "2.2.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
"Microsoft.CodeCoverage": {
"type": "build",
"version": "1.0.1"
}
},
"Moq": "4.6.36-*",
"xunit": "2.2.0-*"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
},
"System.Diagnostics.TraceSource": "4.3.0-*",
"System.Net.Http.WinHttpHandler": "4.3.0-*"
"System.Diagnostics.TraceSource": "4.3.0",
"System.Net.Http.WinHttpHandler": "4.3.0"
},
"imports": "dnxcore50"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.AspNetCore.Hosting": "1.1.0-*",
"Microsoft.AspNetCore.Http.Features": "1.1.0-*"
"Microsoft.AspNetCore.Hosting": "1.1.0",
"Microsoft.AspNetCore.Http.Features": "1.1.0"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
Expand Down

0 comments on commit 6febe40

Please sign in to comment.