From 78d1d0099f3da588c87c915be0ad5bbf750c4f06 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Tue, 22 Sep 2015 16:36:48 -0700 Subject: [PATCH] Cleanup --- Security.sln | 2 +- samples/CookieSessionSample/Startup.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Security.sln b/Security.sln index 289a79139a..486611009f 100644 --- a/Security.sln +++ b/Security.sln @@ -48,7 +48,7 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.CookiePoli EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.CookiePolicy.Test", "test\Microsoft.AspNet.CookiePolicy.Test\Microsoft.AspNet.CookiePolicy.Test.xproj", "{1790E052-646F-4529-B90E-6FEA95520D69}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Authentication.JwtBearer", "src\Microsoft.AspNet.Authentication.OpenIdConnectBearer\Microsoft.AspNet.Authentication.JwtBearer.xproj", "{2755BFE5-7421-4A31-A644-F817DF5CAA98}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Authentication.JwtBearer", "src\Microsoft.AspNet.Authentication.JwtBearer\Microsoft.AspNet.Authentication.JwtBearer.xproj", "{2755BFE5-7421-4A31-A644-F817DF5CAA98}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/samples/CookieSessionSample/Startup.cs b/samples/CookieSessionSample/Startup.cs index 8e0cbcad45..bea9ae79d8 100644 --- a/samples/CookieSessionSample/Startup.cs +++ b/samples/CookieSessionSample/Startup.cs @@ -20,10 +20,10 @@ namespace CookieSessionSample { loggerfactory.AddConsole(LogLevel.Information); - app.UseCookieAuthentication((System.Action)(options => + app.UseCookieAuthentication(options => { options.AutomaticAuthentication = true; - options.SessionStore = new CookieSessionSample.MemoryCacheTicketStore(); + options.SessionStore = new MemoryCacheTicketStore(); })); app.Run(async context =>