From 04c6b1f10192a74ca82132efebd90e75c60a5777 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Tue, 10 Feb 2015 11:25:30 -0800 Subject: [PATCH] Adding necessary dependencies to OpenIdConnect directly OpenIdconnect project is betting on the dependencies included by Microsoft.IdentityModel.Protocol.Extensions for the types that are referenced directly in this library but not used in Protocol.Extensions library. This change is to enable Wilson clean up its unused dependencies. --- src/Microsoft.AspNet.Security.OpenIdConnect/project.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Security.OpenIdConnect/project.json b/src/Microsoft.AspNet.Security.OpenIdConnect/project.json index 728e82b194..a02c8145f9 100644 --- a/src/Microsoft.AspNet.Security.OpenIdConnect/project.json +++ b/src/Microsoft.AspNet.Security.OpenIdConnect/project.json @@ -2,16 +2,18 @@ "version": "1.0.0-*", "dependencies": { "Microsoft.AspNet.Security": "1.0.0-*", - "Microsoft.IdentityModel.Protocol.Extensions": "2.0.0.0-beta1-*" + "Microsoft.IdentityModel.Protocol.Extensions": "2.0.0-beta1-*" }, "frameworks": { "aspnet50": { "frameworkAssemblies": { + "System.Net.Http": "", "System.Net.Http.WebRequest": "" } }, "aspnetcore50": { "dependencies": { + "System.Collections.Specialized": "4.0.0-beta-*", "System.Net.Http.WinHttpHandler": "4.0.0-beta-*" } }