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

Commit 4fca1ff

Browse files
committed
Pinning versions for 1.1.0 release
1 parent f69bd99 commit 4fca1ff

File tree

25 files changed

+145
-144
lines changed

25 files changed

+145
-144
lines changed

NuGet.config

Lines changed: 4 additions & 3 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>
78
</configuration>

samples/CookieSample/project.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0-*",
4-
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
7-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0-*",
8-
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4+
"Microsoft.AspNetCore.DataProtection": "1.1.0",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
7+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
8+
"Microsoft.Extensions.Logging.Console": "1.1.0"
99
},
1010
"buildOptions": {
1111
"emitEntryPoint": true
@@ -15,7 +15,7 @@
1515
"netcoreapp1.1": {
1616
"dependencies": {
1717
"Microsoft.NETCore.App": {
18-
"version": "1.1.0-*",
18+
"version": "1.1.0",
1919
"type": "platform"
2020
}
2121
}

samples/CookieSessionSample/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0-*",
4-
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
7-
"Microsoft.Extensions.Caching.Memory": "1.1.0-*",
8-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0-*",
9-
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4+
"Microsoft.AspNetCore.DataProtection": "1.1.0",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
7+
"Microsoft.Extensions.Caching.Memory": "1.1.0",
8+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
9+
"Microsoft.Extensions.Logging.Console": "1.1.0"
1010
},
1111
"buildOptions": {
1212
"emitEntryPoint": true
@@ -16,7 +16,7 @@
1616
"netcoreapp1.1": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.1.0-*",
19+
"version": "1.1.0",
2020
"type": "platform"
2121
}
2222
}

samples/JwtBearerSample/project.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
"emitEntryPoint": true
55
},
66
"dependencies": {
7-
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.0-*",
8-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
9-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
10-
"Microsoft.AspNetCore.StaticFiles": "1.1.0-*",
11-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0-*",
12-
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0-*"
7+
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.0",
8+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
9+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
10+
"Microsoft.AspNetCore.StaticFiles": "1.1.0",
11+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
12+
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0"
1313
},
1414
"frameworks": {
1515
"net451": {},
1616
"netcoreapp1.1": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.1.0-*",
19+
"version": "1.1.0",
2020
"type": "platform"
2121
}
2222
}

samples/OpenIdConnect.AzureAdSample/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0-*",
4-
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0-*",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
7-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0-*",
8-
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0-*",
9-
"Microsoft.Extensions.Logging.Console": "1.1.0-*",
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4+
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
7+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
8+
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
9+
"Microsoft.Extensions.Logging.Console": "1.1.0",
1010
"Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.4"
1111
},
1212
"frameworks": {
1313
"net451": {},
1414
"netcoreapp1.1": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
17-
"version": "1.1.0-*",
17+
"version": "1.1.0",
1818
"type": "platform"
1919
}
2020
}

samples/OpenIdConnectSample/project.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0-*",
4-
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0-*",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
7-
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0-*",
8-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0-*",
9-
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0-*",
10-
"Microsoft.Extensions.FileProviders.Embedded": "1.1.0-*",
11-
"Microsoft.Extensions.Logging.Console": "1.1.0-*",
12-
"Microsoft.Extensions.Logging.Debug": "1.1.0-*"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4+
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
7+
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
8+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
9+
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
10+
"Microsoft.Extensions.FileProviders.Embedded": "1.1.0",
11+
"Microsoft.Extensions.Logging.Console": "1.1.0",
12+
"Microsoft.Extensions.Logging.Debug": "1.1.0"
1313
},
1414
"frameworks": {
1515
"net451": {},
1616
"netcoreapp1.1": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.1.0-*",
19+
"version": "1.1.0",
2020
"type": "platform"
2121
}
2222
}

samples/SocialSample/project.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0-*",
4-
"Microsoft.AspNetCore.Authentication.Facebook": "1.1.0-*",
5-
"Microsoft.AspNetCore.Authentication.Google": "1.1.0-*",
6-
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.0-*",
7-
"Microsoft.AspNetCore.Authentication.Twitter": "1.1.0-*",
8-
"Microsoft.AspNetCore.DataProtection": "1.1.0-*",
9-
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*",
10-
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
11-
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0-*",
12-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0-*",
13-
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0-*",
14-
"Microsoft.Extensions.FileProviders.Embedded": "1.1.0-*",
15-
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
4+
"Microsoft.AspNetCore.Authentication.Facebook": "1.1.0",
5+
"Microsoft.AspNetCore.Authentication.Google": "1.1.0",
6+
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.0",
7+
"Microsoft.AspNetCore.Authentication.Twitter": "1.1.0",
8+
"Microsoft.AspNetCore.DataProtection": "1.1.0",
9+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
10+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
11+
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
12+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
13+
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
14+
"Microsoft.Extensions.FileProviders.Embedded": "1.1.0",
15+
"Microsoft.Extensions.Logging.Console": "1.1.0"
1616
},
1717
"buildOptions": {
1818
"emitEntryPoint": true
@@ -22,7 +22,7 @@
2222
"netcoreapp1.1": {
2323
"dependencies": {
2424
"Microsoft.NETCore.App": {
25-
"version": "1.1.0-*",
25+
"version": "1.1.0",
2626
"type": "platform"
2727
}
2828
}

src/Microsoft.AspNetCore.Authentication.Cookies/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 middleware that enables an application to use cookie based authentication.",
44
"packOptions": {
55
"repository": {
@@ -24,18 +24,18 @@
2424
]
2525
},
2626
"dependencies": {
27-
"Microsoft.AspNetCore.Authentication": "1.1.0-*",
27+
"Microsoft.AspNetCore.Authentication": "1.1.0",
2828
"Microsoft.AspNetCore.ChunkingCookieManager.Sources": {
29-
"version": "1.1.0-*",
29+
"version": "1.1.0-rtm-22752",
3030
"type": "build"
3131
},
32-
"Microsoft.Extensions.Options": "1.1.0-*",
32+
"Microsoft.Extensions.Options": "1.1.0",
3333
"Microsoft.Extensions.TaskCache.Sources": {
34-
"version": "1.1.0-*",
34+
"version": "1.1.0-rtm-22752",
3535
"type": "build"
3636
},
37-
"Microsoft.Extensions.WebEncoders": "1.1.0-*",
38-
"NETStandard.Library": "1.6.1-*"
37+
"Microsoft.Extensions.WebEncoders": "1.1.0",
38+
"NETStandard.Library": "1.6.1"
3939
},
4040
"frameworks": {
4141
"net451": {},

src/Microsoft.AspNetCore.Authentication.Facebook/project.json

Lines changed: 3 additions & 3 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 middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.",
44
"packOptions": {
55
"repository": {
@@ -21,8 +21,8 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.0-*",
25-
"NETStandard.Library": "1.6.1-*"
24+
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
25+
"NETStandard.Library": "1.6.1"
2626
},
2727
"frameworks": {
2828
"net451": {},

src/Microsoft.AspNetCore.Authentication.Google/project.json

Lines changed: 3 additions & 3 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 contains middleware to support Google's OpenId and OAuth 2.0 authentication workflows.",
44
"packOptions": {
55
"repository": {
@@ -21,8 +21,8 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.0-*",
25-
"NETStandard.Library": "1.6.1-*"
24+
"Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
25+
"NETStandard.Library": "1.6.1"
2626
},
2727
"frameworks": {
2828
"net451": {},

0 commit comments

Comments
 (0)