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

Commit 6072e3b

Browse files
committed
#221 Remove unneeded dependencies around DataProtection.
1 parent 7d6349c commit 6072e3b

File tree

9 files changed

+20
-7
lines changed

9 files changed

+20
-7
lines changed

samples/CookieSample/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"dependencies": {
33
"Microsoft.AspNet.Authentication.Cookies": "1.0.0-*",
4+
"Microsoft.AspNet.DataProtection": "1.0.0-*",
45
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
56
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
67
"Microsoft.Framework.Logging.Console": "1.0.0-*",

samples/CookieSessionSample/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"dependencies": {
33
"Microsoft.AspNet.Authentication.Cookies": "1.0.0-*",
4+
"Microsoft.AspNet.DataProtection": "1.0.0-*",
45
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
56
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
67
"Microsoft.Framework.Caching.Memory": "1.0.0-*",

samples/OpenIdConnectSample/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"dependencies": {
33
"Microsoft.AspNet.Authentication.Cookies": "1.0.0-*",
44
"Microsoft.AspNet.Authentication.OpenIdConnect": "1.0.0-*",
5+
"Microsoft.AspNet.DataProtection": "1.0.0-*",
56
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
67
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
78
"Microsoft.Framework.Logging.Console": "1.0.0-*",

samples/SocialSample/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"Microsoft.AspNet.Authentication.Google": "1.0.0-*",
66
"Microsoft.AspNet.Authentication.MicrosoftAccount": "1.0.0-*",
77
"Microsoft.AspNet.Authentication.Twitter": "1.0.0-*",
8+
"Microsoft.AspNet.DataProtection": "1.0.0-*",
89
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
910
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
1011
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
},
99
"frameworks": {
1010
"dnx451": { },
11-
"dnxcore50": { }
11+
"dnxcore50": {
12+
"dependencies": {
13+
"System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*"
14+
}
15+
}
1216
}
1317
}

src/Microsoft.AspNet.Authentication.OAuth/project.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"version": "1.0.0-*",
33
"description": "ASP.NET 5 middleware that enables an application to support any standard OAuth 2.0 authentication workflow.",
44
"dependencies": {
5-
"Microsoft.AspNet.DataProtection": "1.0.0-*",
65
"Microsoft.AspNet.Authentication": "1.0.0-*",
76
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" },
87
"Newtonsoft.Json": "6.0.6"

src/Microsoft.AspNet.Authentication.Twitter/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
},
1515
"dnxcore50": {
1616
"dependencies": {
17-
"System.Net.Http.WinHttpHandler": "4.0.0-beta-*"
17+
"System.Net.Http.WinHttpHandler": "4.0.0-beta-*",
18+
"System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*"
1819
}
1920
}
2021
}

src/Microsoft.AspNet.Authentication/project.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22
"version": "1.0.0-*",
33
"description": "ASP.NET 5 common types used by the various authentication middleware.",
44
"dependencies": {
5-
"Microsoft.AspNet.DataProtection": "1.0.0-*",
5+
"Microsoft.AspNet.DataProtection.Interfaces": "1.0.0-*",
66
"Microsoft.AspNet.Http": "1.0.0-*",
7-
"Microsoft.AspNet.Http.Interfaces": "1.0.0-*",
87
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
98
"Microsoft.Framework.Logging.Interfaces": "1.0.0-*",
10-
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" }
9+
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" },
10+
"Microsoft.Framework.OptionsModel": "1.0.0-*"
1111
},
1212
"frameworks": {
1313
"dnx451": { },
14-
"dnxcore50": { }
14+
"dnxcore50": {
15+
"dependencies": {
16+
"System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-*"
17+
}
18+
}
1519
}
1620
}

test/Microsoft.AspNet.Authentication.Test/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"Microsoft.AspNet.Authentication.OAuthBearer": "1.0.0-*",
1111
"Microsoft.AspNet.Authentication.OpenIdConnect": "1.0.0-*",
1212
"Microsoft.AspNet.Authentication.Twitter": "1.0.0-*",
13+
"Microsoft.AspNet.DataProtection": "1.0.0-*",
1314
"Microsoft.AspNet.TestHost": "1.0.0-*",
1415
"Moq": "4.2.1312.1622",
1516
"xunit.runner.aspnet": "2.0.0-aspnet-*"

0 commit comments

Comments
 (0)