From 873a2fe17f413cdb15844d9d94a7a6cfcbd23665 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 30 Jun 2017 15:20:44 -0700 Subject: [PATCH] React to changes in Antiforgery API --- samples/MvcSandbox/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/MvcSandbox/Startup.cs b/samples/MvcSandbox/Startup.cs index 1c883d9379..53478a90ee 100644 --- a/samples/MvcSandbox/Startup.cs +++ b/samples/MvcSandbox/Startup.cs @@ -20,7 +20,7 @@ namespace MvcSandbox services.Insert(0, ServiceDescriptor.Singleton( typeof(IConfigureOptions), - new ConfigureOptions(options => options.CookieName = ""))); + new ConfigureOptions(options => options.Cookie.Name = ""))); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.