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

Commit d4a3e37

Browse files
committed
Pinning versions for 1.1.0 release
1 parent 5274f5f commit d4a3e37

File tree

4 files changed

+25
-24
lines changed

4 files changed

+25
-24
lines changed

NuGet.config

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-release/api/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
4+
<clear />
5+
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
6+
<add key="AspNetCore" value="https://dotnet.myget.org/f/aspnetcore-master/api/v3/index.json" />
67
</packageSources>
7-
</configuration>
8+
</configuration>

samples/SessionSample/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"emitEntryPoint": true
44
},
55
"dependencies": {
6-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
7-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
8-
"Microsoft.AspNetCore.Session": "1.1.0-*",
9-
"Microsoft.Extensions.Caching.Memory": "1.1.0-*",
10-
"Microsoft.Extensions.Caching.Redis": "1.1.0-*",
11-
"Microsoft.Extensions.Caching.SqlServer": "1.1.0-*",
12-
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
6+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
7+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
8+
"Microsoft.AspNetCore.Session": "1.1.0",
9+
"Microsoft.Extensions.Caching.Memory": "1.1.0",
10+
"Microsoft.Extensions.Caching.Redis": "1.1.0",
11+
"Microsoft.Extensions.Caching.SqlServer": "1.1.0",
12+
"Microsoft.Extensions.Logging.Console": "1.1.0"
1313
},
1414
"publishOptions": {
1515
"include": [
@@ -21,7 +21,7 @@
2121
"netcoreapp1.1": {
2222
"dependencies": {
2323
"Microsoft.NETCore.App": {
24-
"version": "1.1.0-*",
24+
"version": "1.1.0",
2525
"type": "platform"
2626
}
2727
}

src/Microsoft.AspNetCore.Session/project.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"description": "ASP.NET Core session state middleware.",
44
"packOptions": {
55
"repository": {
@@ -13,12 +13,12 @@
1313
]
1414
},
1515
"dependencies": {
16-
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
17-
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0-*",
18-
"Microsoft.Extensions.Caching.Abstractions": "1.1.0-*",
19-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
20-
"Microsoft.Extensions.Options": "1.1.0-*",
21-
"NETStandard.Library": "1.6.1-*"
16+
"Microsoft.AspNetCore.DataProtection": "1.1.0",
17+
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
18+
"Microsoft.Extensions.Caching.Abstractions": "1.1.0",
19+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
20+
"Microsoft.Extensions.Options": "1.1.0",
21+
"NETStandard.Library": "1.6.1"
2222
},
2323
"buildOptions": {
2424
"allowUnsafe": true,

test/Microsoft.AspNetCore.Session.Tests/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"dependencies": {
33
"dotnet-test-xunit": "2.2.0-*",
4-
"Microsoft.AspNetCore.Session": "1.1.0-*",
5-
"Microsoft.AspNetCore.TestHost": "1.1.0-*",
6-
"Microsoft.Extensions.Caching.Memory": "1.1.0-*",
7-
"Microsoft.Extensions.Logging.Testing": "1.1.0-*",
4+
"Microsoft.AspNetCore.Session": "1.1.0",
5+
"Microsoft.AspNetCore.TestHost": "1.1.0",
6+
"Microsoft.Extensions.Caching.Memory": "1.1.0",
7+
"Microsoft.Extensions.Logging.Testing": "1.1.0-rtm-22752",
88
"xunit": "2.2.0-*"
99
},
1010
"testRunner": "xunit",
1111
"frameworks": {
1212
"netcoreapp1.1": {
1313
"dependencies": {
1414
"Microsoft.NETCore.App": {
15-
"version": "1.1.0-*",
15+
"version": "1.1.0",
1616
"type": "platform"
1717
}
1818
}

0 commit comments

Comments
 (0)