diff --git a/src/Microsoft.AspNet.Identity.Entity/IdentityContext.cs b/src/Microsoft.AspNet.Identity.Entity/IdentityContext.cs index 04e8c68c6a..a3e09da0e7 100644 --- a/src/Microsoft.AspNet.Identity.Entity/IdentityContext.cs +++ b/src/Microsoft.AspNet.Identity.Entity/IdentityContext.cs @@ -19,8 +19,8 @@ using System; using Microsoft.AspNet.DependencyInjection; using Microsoft.AspNet.DependencyInjection.Fallback; using Microsoft.Data.Entity; -using Microsoft.Data.SqlServer; -using Microsoft.Data.InMemory; +using Microsoft.Data.Entity.SqlServer; +using Microsoft.Data.Entity.InMemory; using Microsoft.Data.Entity.Metadata; namespace Microsoft.AspNet.Identity.Entity diff --git a/test/Microsoft.AspNet.Identity.Entity.Test/RoleStoreTest.cs b/test/Microsoft.AspNet.Identity.Entity.Test/RoleStoreTest.cs index 8d4cd6cad2..a1a31ef4e0 100644 --- a/test/Microsoft.AspNet.Identity.Entity.Test/RoleStoreTest.cs +++ b/test/Microsoft.AspNet.Identity.Entity.Test/RoleStoreTest.cs @@ -21,7 +21,7 @@ using Microsoft.AspNet.DependencyInjection; using Microsoft.AspNet.DependencyInjection.Fallback; using Microsoft.AspNet.Identity.Test; using Microsoft.Data.Entity; -using Microsoft.Data.InMemory; +using Microsoft.Data.Entity.InMemory; using Xunit; namespace Microsoft.AspNet.Identity.Entity.Test diff --git a/test/Microsoft.AspNet.Identity.Entity.Test/TestIdentityFactory.cs b/test/Microsoft.AspNet.Identity.Entity.Test/TestIdentityFactory.cs index 1043116c56..a4ab7e0c03 100644 --- a/test/Microsoft.AspNet.Identity.Entity.Test/TestIdentityFactory.cs +++ b/test/Microsoft.AspNet.Identity.Entity.Test/TestIdentityFactory.cs @@ -21,7 +21,7 @@ using Microsoft.AspNet.DependencyInjection.Fallback; using Microsoft.Data.Entity; using Microsoft.Data.Entity.Metadata; using Microsoft.Data.Entity.Storage; -using Microsoft.Data.InMemory; +using Microsoft.Data.Entity.InMemory; using System; using System.Linq; using System.Security.Claims; diff --git a/test/Microsoft.AspNet.Identity.Entity.Test/UserStoreTest.cs b/test/Microsoft.AspNet.Identity.Entity.Test/UserStoreTest.cs index 6798aa38b8..ca67566f26 100644 --- a/test/Microsoft.AspNet.Identity.Entity.Test/UserStoreTest.cs +++ b/test/Microsoft.AspNet.Identity.Entity.Test/UserStoreTest.cs @@ -21,8 +21,8 @@ using Microsoft.AspNet.Identity.Test; using Microsoft.AspNet.Testing; using Microsoft.Data.Entity; using Microsoft.Data.Entity.Metadata; -using Microsoft.Data.InMemory; -using Microsoft.Data.SqlServer; +using Microsoft.Data.Entity.InMemory; +using Microsoft.Data.Entity.SqlServer; using System; using System.Linq; using System.Security.Claims;