From a13dfc1eb51ae62cf72bd0686f65729ee52dd076 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Wed, 2 Sep 2015 08:21:46 -0700 Subject: [PATCH] Breaking changes from MVC --- samples/IdentitySample.Mvc/Controllers/AccountController.cs | 3 +-- samples/IdentitySample.Mvc/Controllers/ManageController.cs | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/IdentitySample.Mvc/Controllers/AccountController.cs b/samples/IdentitySample.Mvc/Controllers/AccountController.cs index 641daad0b0..9e9ceb8c21 100644 --- a/samples/IdentitySample.Mvc/Controllers/AccountController.cs +++ b/samples/IdentitySample.Mvc/Controllers/AccountController.cs @@ -1,13 +1,12 @@ using System.Linq; using System.Security.Claims; -using System.Security.Principal; using System.Threading.Tasks; using IdentitySample.Models; using IdentitySamples; -using Microsoft.AspNet.Authentication; using Microsoft.AspNet.Authorization; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Mvc; +using Microsoft.AspNet.Mvc.ActionResults; using Microsoft.AspNet.Mvc.Rendering; namespace IdentitySample.Controllers diff --git a/samples/IdentitySample.Mvc/Controllers/ManageController.cs b/samples/IdentitySample.Mvc/Controllers/ManageController.cs index 58f53c386a..3359d7c33b 100644 --- a/samples/IdentitySample.Mvc/Controllers/ManageController.cs +++ b/samples/IdentitySample.Mvc/Controllers/ManageController.cs @@ -6,6 +6,7 @@ using IdentitySamples; using Microsoft.AspNet.Authorization; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Mvc; +using Microsoft.AspNet.Mvc.ActionResults; namespace IdentitySample.Controllers {