Skip to content

Commit accfdf7

Browse files
committed
Update project.json to target the final .NET Core/ASP.NET Core RC2 packages
1 parent 558f772 commit accfdf7

File tree

5 files changed

+18
-19
lines changed

5 files changed

+18
-19
lines changed

NuGet.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="AspNetCiRelease" value="https://www.myget.org/F/aspnetcirelease/api/v3/index.json" />
54
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
65
</packageSources>
76
</configuration>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ AspNet.Security.OpenId.Providers
55

66
**The latest official release can be found on [NuGet](https://www.nuget.org/profiles/aspnet-contrib) and the nightly builds on [MyGet](https://www.myget.org/gallery/aspnet-contrib)**.
77

8-
[![Build status](https://ci.appveyor.com/api/projects/status/tc9n807mwi4sr5jd/branch/release?svg=true)](https://ci.appveyor.com/project/aspnet-contrib/aspnet-security-openid-providers/branch/release)
9-
[![Build status](https://travis-ci.org/aspnet-contrib/AspNet.Security.OpenId.Providers.svg?branch=release)](https://travis-ci.org/aspnet-contrib/AspNet.Security.OpenId.Providers)
8+
[![Build status](https://ci.appveyor.com/api/projects/status/tc9n807mwi4sr5jd/branch/master?svg=true)](https://ci.appveyor.com/project/aspnet-contrib/aspnet-security-openid-providers/branch/master)
9+
[![Build status](https://travis-ci.org/aspnet-contrib/AspNet.Security.OpenId.Providers.svg?branch=master)](https://travis-ci.org/aspnet-contrib/AspNet.Security.OpenId.Providers)
1010

1111
## Getting started
1212

samples/Mvc.Client/project.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,28 @@
1616

1717
"dependencies": {
1818
"AspNet.Security.OpenId.Steam": { "target": "project" },
19-
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-rc2-*",
20-
"Microsoft.AspNetCore.Hosting": "1.0.0-rc2-*",
21-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-*",
22-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-*",
23-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-*",
24-
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-*",
25-
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-*",
26-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-*",
27-
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-*",
28-
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-*"
19+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-rc2-final",
20+
"Microsoft.AspNetCore.Hosting": "1.0.0-rc2-final",
21+
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
22+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
23+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
24+
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
25+
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc2-final",
26+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
27+
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
28+
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final"
2929
},
3030

3131
"frameworks": {
3232
"net451": {
3333
"dependencies": {
34-
"Microsoft.NETCore.Platforms": "1.0.1-rc2-*"
34+
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027"
3535
}
3636
},
3737

3838
"netcoreapp1.0": {
3939
"dependencies": {
40-
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-rc2-*" }
40+
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-rc2-3002702" }
4141
},
4242

4343
"imports": [
@@ -49,7 +49,7 @@
4949

5050
"tools": {
5151
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
52-
"version": "1.0.0-preview1-*",
52+
"version": "1.0.0-preview1-final",
5353
"imports": "portable-net45+wp80+win8+wpa81+dnxcore50"
5454
}
5555
},

src/AspNet.Security.OpenId.Steam/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-alpha4-*",
2+
"version": "1.0.0-alpha4-final",
33

44
"packOptions": {
55
"description": "ASP.NET Core authentication middleware for Steam.",

src/AspNet.Security.OpenId/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-alpha4-*",
2+
"version": "1.0.0-alpha4-final",
33

44
"packOptions": {
55
"description": "ASP.NET Core authentication middleware for OpenID 2.0 providers.",
@@ -32,7 +32,7 @@
3232
"dependencies": {
3333
"AngleSharp": "0.9.6",
3434
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
35-
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-*",
35+
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-final",
3636
"Newtonsoft.Json": "8.0.3"
3737
},
3838

0 commit comments

Comments
 (0)