Skip to content
This repository has been archived by the owner on Nov 22, 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 f2b8825 commit b077a0d
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 24 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>
10 changes: 5 additions & 5 deletions samples/ResponseCachingSample/project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"dependencies": {
"Microsoft.AspNetCore.ResponseCaching": "1.1.0-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
"Microsoft.Extensions.Caching.Memory": "1.1.0-*"
"Microsoft.AspNetCore.ResponseCaching": "1.1.0",
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
"Microsoft.Extensions.Caching.Memory": "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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
{
"version": "1.1.0",
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
Expand All @@ -18,13 +18,13 @@
]
},
"dependencies": {
"Microsoft.Extensions.Primitives": "1.1.0-*"
"Microsoft.Extensions.Primitives": "1.1.0"
},
"frameworks": {
"net451": {},
"netstandard1.3": {
"dependencies": {
"NETStandard.Library": "1.6.1-*"
"NETStandard.Library": "1.6.1"
}
}
}
Expand Down
16 changes: 8 additions & 8 deletions src/Microsoft.AspNetCore.ResponseCaching/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"buildOptions": {
"warningsAsErrors": true,
"allowUnsafe": true,
Expand All @@ -22,16 +22,16 @@
]
},
"dependencies": {
"Microsoft.AspNetCore.Http": "1.1.0-*",
"Microsoft.AspNetCore.Http.Extensions": "1.1.0-*",
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0-*",
"Microsoft.Extensions.Caching.Memory": "1.1.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"Microsoft.AspNetCore.Http": "1.1.0",
"Microsoft.AspNetCore.Http.Extensions": "1.1.0",
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
"Microsoft.Extensions.Caching.Memory": "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-*"
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {},
Expand Down
8 changes: 4 additions & 4 deletions test/Microsoft.AspNetCore.ResponseCaching.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.ResponseCaching": "1.1.0-*",
"Microsoft.AspNetCore.TestHost": "1.1.0-*",
"Microsoft.Extensions.Logging.Testing": "1.1.0-*",
"Microsoft.AspNetCore.ResponseCaching": "1.1.0",
"Microsoft.AspNetCore.TestHost": "1.1.0",
"Microsoft.Extensions.Logging.Testing": "1.1.0-rtm-22752",
"xunit": "2.2.0-*"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
Expand Down

0 comments on commit b077a0d

Please sign in to comment.