diff --git a/Identity.sln b/Identity.sln index 97cd0565ac..b987927f6e 100644 --- a/Identity.sln +++ b/Identity.sln @@ -9,19 +9,19 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{52D59F18-6 EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Identity.InMemory", "src\Microsoft.AspNet.Identity.InMemory\Microsoft.AspNet.Identity.InMemory.kproj", "{01A9DA71-5C42-4ED5-AD0C-D6FAF11C0A74}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Identity", "src\Microsoft.Framework.Identity\Microsoft.Framework.Identity.kproj", "{1729302E-A58E-4652-B639-5B6B68DA2748}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Identity", "src\Microsoft.AspNet.Identity\Microsoft.AspNet.Identity.kproj", "{1729302E-A58E-4652-B639-5B6B68DA2748}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Identity.EntityFramework", "src\Microsoft.Framework.Identity.EntityFramework\Microsoft.Framework.Identity.EntityFramework.kproj", "{AD42BAFB-1993-4FAF-A280-3711A9F33E2F}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Identity.EntityFramework", "src\Microsoft.AspNet.Identity.EntityFramework\Microsoft.AspNet.Identity.EntityFramework.kproj", "{AD42BAFB-1993-4FAF-A280-3711A9F33E2F}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Identity.AspNet", "src\Microsoft.Framework.Identity.AspNet\Microsoft.Framework.Identity.AspNet.kproj", "{7B4CFF5A-1948-45EC-B170-6EB7C039B2F9}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Identity.Authentication", "src\Microsoft.AspNet.Identity.Authentication\Microsoft.AspNet.Identity.Authentication.kproj", "{7B4CFF5A-1948-45EC-B170-6EB7C039B2F9}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Identity.Test", "test\Microsoft.Framework.Identity.Test\Microsoft.Framework.Identity.Test.kproj", "{2CF3927B-19E4-4866-9BAA-2C131580E7C3}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Identity.Test", "test\Microsoft.AspNet.Identity.Test\Microsoft.AspNet.Identity.Test.kproj", "{2CF3927B-19E4-4866-9BAA-2C131580E7C3}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Identity.AspNet.Test", "test\Microsoft.Framework.Identity.AspNet.Test\Microsoft.Framework.Identity.AspNet.Test.kproj", "{823453CC-5846-4D49-B343-15BC0074CA60}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Identity.Authentication.Test", "test\Microsoft.AspNet.Identity.Authentication.Test\Microsoft.AspNet.Identity.Authentication.Test.kproj", "{823453CC-5846-4D49-B343-15BC0074CA60}" EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Identity.InMemory.Test", "test\Microsoft.AspNet.Identity.InMemory.Test\Microsoft.AspNet.Identity.InMemory.Test.kproj", "{65161409-C4C4-4D63-A73B-231FCFF4D503}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Identity.EntityFramework.Test", "test\Microsoft.Framework.Identity.EntityFramework.Test\Microsoft.Framework.Identity.EntityFramework.Test.kproj", "{B4C067C1-F934-493C-9DBC-19E8CA305613}" +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Identity.EntityFramework.Test", "test\Microsoft.AspNet.Identity.EntityFramework.Test\Microsoft.AspNet.Identity.EntityFramework.Test.kproj", "{B4C067C1-F934-493C-9DBC-19E8CA305613}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/Microsoft.Framework.Identity.AspNet/HttpAuthenticationManager.cs b/src/Microsoft.AspNet.Identity.Authentication/HttpAuthenticationManager.cs similarity index 100% rename from src/Microsoft.Framework.Identity.AspNet/HttpAuthenticationManager.cs rename to src/Microsoft.AspNet.Identity.Authentication/HttpAuthenticationManager.cs diff --git a/src/Microsoft.Framework.Identity.AspNet/IdentityBuilderExtensions.cs b/src/Microsoft.AspNet.Identity.Authentication/IdentityBuilderExtensions.cs similarity index 100% rename from src/Microsoft.Framework.Identity.AspNet/IdentityBuilderExtensions.cs rename to src/Microsoft.AspNet.Identity.Authentication/IdentityBuilderExtensions.cs diff --git a/src/Microsoft.Framework.Identity.AspNet/IdentityExtensions.cs b/src/Microsoft.AspNet.Identity.Authentication/IdentityExtensions.cs similarity index 100% rename from src/Microsoft.Framework.Identity.AspNet/IdentityExtensions.cs rename to src/Microsoft.AspNet.Identity.Authentication/IdentityExtensions.cs diff --git a/src/Microsoft.Framework.Identity.AspNet/Microsoft.Framework.Identity.AspNet.kproj b/src/Microsoft.AspNet.Identity.Authentication/Microsoft.AspNet.Identity.Authentication.kproj similarity index 100% rename from src/Microsoft.Framework.Identity.AspNet/Microsoft.Framework.Identity.AspNet.kproj rename to src/Microsoft.AspNet.Identity.Authentication/Microsoft.AspNet.Identity.Authentication.kproj diff --git a/src/Microsoft.Framework.Identity.AspNet/project.json b/src/Microsoft.AspNet.Identity.Authentication/project.json similarity index 100% rename from src/Microsoft.Framework.Identity.AspNet/project.json rename to src/Microsoft.AspNet.Identity.Authentication/project.json diff --git a/src/Microsoft.Framework.Identity.EntityFramework/EntityIdentityBuilderExtensions.cs b/src/Microsoft.AspNet.Identity.EntityFramework/EntityIdentityBuilderExtensions.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/EntityIdentityBuilderExtensions.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/EntityIdentityBuilderExtensions.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/EntityRole.cs b/src/Microsoft.AspNet.Identity.EntityFramework/EntityRole.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/EntityRole.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/EntityRole.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/EntityRoleStore.cs b/src/Microsoft.AspNet.Identity.EntityFramework/EntityRoleStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/EntityRoleStore.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/EntityRoleStore.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/EntityUser.cs b/src/Microsoft.AspNet.Identity.EntityFramework/EntityUser.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/EntityUser.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/EntityUser.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/IdentityContext.cs b/src/Microsoft.AspNet.Identity.EntityFramework/IdentityContext.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/IdentityContext.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/IdentityContext.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/IdentitySqlContext.cs b/src/Microsoft.AspNet.Identity.EntityFramework/IdentitySqlContext.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/IdentitySqlContext.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/IdentitySqlContext.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/InMemoryUserStore.cs b/src/Microsoft.AspNet.Identity.EntityFramework/InMemoryUserStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/InMemoryUserStore.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/InMemoryUserStore.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/Microsoft.Framework.Identity.EntityFramework.kproj b/src/Microsoft.AspNet.Identity.EntityFramework/Microsoft.AspNet.Identity.EntityFramework.kproj similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/Microsoft.Framework.Identity.EntityFramework.kproj rename to src/Microsoft.AspNet.Identity.EntityFramework/Microsoft.AspNet.Identity.EntityFramework.kproj diff --git a/src/Microsoft.Framework.Identity.EntityFramework/RoleStore.cs b/src/Microsoft.AspNet.Identity.EntityFramework/RoleStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/RoleStore.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/RoleStore.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/SqlUserStore.cs b/src/Microsoft.AspNet.Identity.EntityFramework/SqlUserStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/SqlUserStore.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/SqlUserStore.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/User.cs b/src/Microsoft.AspNet.Identity.EntityFramework/User.cs similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/User.cs rename to src/Microsoft.AspNet.Identity.EntityFramework/User.cs diff --git a/src/Microsoft.Framework.Identity.EntityFramework/project.json b/src/Microsoft.AspNet.Identity.EntityFramework/project.json similarity index 100% rename from src/Microsoft.Framework.Identity.EntityFramework/project.json rename to src/Microsoft.AspNet.Identity.EntityFramework/project.json diff --git a/src/Microsoft.Framework.Identity/ClaimTypeOptions.cs b/src/Microsoft.AspNet.Identity/ClaimTypeOptions.cs similarity index 100% rename from src/Microsoft.Framework.Identity/ClaimTypeOptions.cs rename to src/Microsoft.AspNet.Identity/ClaimTypeOptions.cs diff --git a/src/Microsoft.Framework.Identity/ClaimsIdentityFactory.cs b/src/Microsoft.AspNet.Identity/ClaimsIdentityFactory.cs similarity index 100% rename from src/Microsoft.Framework.Identity/ClaimsIdentityFactory.cs rename to src/Microsoft.AspNet.Identity/ClaimsIdentityFactory.cs diff --git a/src/Microsoft.Framework.Identity/Crypto.cs b/src/Microsoft.AspNet.Identity/Crypto.cs similarity index 100% rename from src/Microsoft.Framework.Identity/Crypto.cs rename to src/Microsoft.AspNet.Identity/Crypto.cs diff --git a/src/Microsoft.Framework.Identity/DefaultAuthenticationTypes.cs b/src/Microsoft.AspNet.Identity/DefaultAuthenticationTypes.cs similarity index 100% rename from src/Microsoft.Framework.Identity/DefaultAuthenticationTypes.cs rename to src/Microsoft.AspNet.Identity/DefaultAuthenticationTypes.cs diff --git a/src/Microsoft.Framework.Identity/IAuthenticationManager.cs b/src/Microsoft.AspNet.Identity/IAuthenticationManager.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IAuthenticationManager.cs rename to src/Microsoft.AspNet.Identity/IAuthenticationManager.cs diff --git a/src/Microsoft.Framework.Identity/IClaimsIdentityFactory.cs b/src/Microsoft.AspNet.Identity/IClaimsIdentityFactory.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IClaimsIdentityFactory.cs rename to src/Microsoft.AspNet.Identity/IClaimsIdentityFactory.cs diff --git a/src/Microsoft.Framework.Identity/IIdentityMessageService.cs b/src/Microsoft.AspNet.Identity/IIdentityMessageService.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IIdentityMessageService.cs rename to src/Microsoft.AspNet.Identity/IIdentityMessageService.cs diff --git a/src/Microsoft.Framework.Identity/IPasswordHasher.cs b/src/Microsoft.AspNet.Identity/IPasswordHasher.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IPasswordHasher.cs rename to src/Microsoft.AspNet.Identity/IPasswordHasher.cs diff --git a/src/Microsoft.Framework.Identity/IPasswordValidator.cs b/src/Microsoft.AspNet.Identity/IPasswordValidator.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IPasswordValidator.cs rename to src/Microsoft.AspNet.Identity/IPasswordValidator.cs diff --git a/src/Microsoft.Framework.Identity/IQueryableRoleStore.cs b/src/Microsoft.AspNet.Identity/IQueryableRoleStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IQueryableRoleStore.cs rename to src/Microsoft.AspNet.Identity/IQueryableRoleStore.cs diff --git a/src/Microsoft.Framework.Identity/IQueryableUserStore.cs b/src/Microsoft.AspNet.Identity/IQueryableUserStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IQueryableUserStore.cs rename to src/Microsoft.AspNet.Identity/IQueryableUserStore.cs diff --git a/src/Microsoft.Framework.Identity/IRoleStore.cs b/src/Microsoft.AspNet.Identity/IRoleStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IRoleStore.cs rename to src/Microsoft.AspNet.Identity/IRoleStore.cs diff --git a/src/Microsoft.Framework.Identity/IRoleValidator.cs b/src/Microsoft.AspNet.Identity/IRoleValidator.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IRoleValidator.cs rename to src/Microsoft.AspNet.Identity/IRoleValidator.cs diff --git a/src/Microsoft.Framework.Identity/IUserClaimStore.cs b/src/Microsoft.AspNet.Identity/IUserClaimStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserClaimStore.cs rename to src/Microsoft.AspNet.Identity/IUserClaimStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserEmailStore.cs b/src/Microsoft.AspNet.Identity/IUserEmailStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserEmailStore.cs rename to src/Microsoft.AspNet.Identity/IUserEmailStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserLockoutStore.cs b/src/Microsoft.AspNet.Identity/IUserLockoutStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserLockoutStore.cs rename to src/Microsoft.AspNet.Identity/IUserLockoutStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserLoginStore.cs b/src/Microsoft.AspNet.Identity/IUserLoginStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserLoginStore.cs rename to src/Microsoft.AspNet.Identity/IUserLoginStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserPasswordStore.cs b/src/Microsoft.AspNet.Identity/IUserPasswordStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserPasswordStore.cs rename to src/Microsoft.AspNet.Identity/IUserPasswordStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserPhoneNumberStore.cs b/src/Microsoft.AspNet.Identity/IUserPhoneNumberStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserPhoneNumberStore.cs rename to src/Microsoft.AspNet.Identity/IUserPhoneNumberStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserRoleStore.cs b/src/Microsoft.AspNet.Identity/IUserRoleStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserRoleStore.cs rename to src/Microsoft.AspNet.Identity/IUserRoleStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserSecurityStampStore.cs b/src/Microsoft.AspNet.Identity/IUserSecurityStampStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserSecurityStampStore.cs rename to src/Microsoft.AspNet.Identity/IUserSecurityStampStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserStore.cs b/src/Microsoft.AspNet.Identity/IUserStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserStore.cs rename to src/Microsoft.AspNet.Identity/IUserStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserTokenProvider.cs b/src/Microsoft.AspNet.Identity/IUserTokenProvider.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserTokenProvider.cs rename to src/Microsoft.AspNet.Identity/IUserTokenProvider.cs diff --git a/src/Microsoft.Framework.Identity/IUserTwoFactorStore.cs b/src/Microsoft.AspNet.Identity/IUserTwoFactorStore.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserTwoFactorStore.cs rename to src/Microsoft.AspNet.Identity/IUserTwoFactorStore.cs diff --git a/src/Microsoft.Framework.Identity/IUserValidator.cs b/src/Microsoft.AspNet.Identity/IUserValidator.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IUserValidator.cs rename to src/Microsoft.AspNet.Identity/IUserValidator.cs diff --git a/src/Microsoft.Framework.Identity/IdentityBuilder.cs b/src/Microsoft.AspNet.Identity/IdentityBuilder.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityBuilder.cs rename to src/Microsoft.AspNet.Identity/IdentityBuilder.cs diff --git a/src/Microsoft.Framework.Identity/IdentityMessage.cs b/src/Microsoft.AspNet.Identity/IdentityMessage.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityMessage.cs rename to src/Microsoft.AspNet.Identity/IdentityMessage.cs diff --git a/src/Microsoft.Framework.Identity/IdentityOptions.cs b/src/Microsoft.AspNet.Identity/IdentityOptions.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityOptions.cs rename to src/Microsoft.AspNet.Identity/IdentityOptions.cs diff --git a/src/Microsoft.Framework.Identity/IdentityResult.cs b/src/Microsoft.AspNet.Identity/IdentityResult.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityResult.cs rename to src/Microsoft.AspNet.Identity/IdentityResult.cs diff --git a/src/Microsoft.Framework.Identity/IdentityRole.cs b/src/Microsoft.AspNet.Identity/IdentityRole.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityRole.cs rename to src/Microsoft.AspNet.Identity/IdentityRole.cs diff --git a/src/Microsoft.Framework.Identity/IdentityServiceCollectionExtensions.cs b/src/Microsoft.AspNet.Identity/IdentityServiceCollectionExtensions.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityServiceCollectionExtensions.cs rename to src/Microsoft.AspNet.Identity/IdentityServiceCollectionExtensions.cs diff --git a/src/Microsoft.Framework.Identity/IdentityServices.cs b/src/Microsoft.AspNet.Identity/IdentityServices.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityServices.cs rename to src/Microsoft.AspNet.Identity/IdentityServices.cs diff --git a/src/Microsoft.Framework.Identity/IdentityUser.cs b/src/Microsoft.AspNet.Identity/IdentityUser.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityUser.cs rename to src/Microsoft.AspNet.Identity/IdentityUser.cs diff --git a/src/Microsoft.Framework.Identity/IdentityUserClaim.cs b/src/Microsoft.AspNet.Identity/IdentityUserClaim.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityUserClaim.cs rename to src/Microsoft.AspNet.Identity/IdentityUserClaim.cs diff --git a/src/Microsoft.Framework.Identity/IdentityUserLogin.cs b/src/Microsoft.AspNet.Identity/IdentityUserLogin.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityUserLogin.cs rename to src/Microsoft.AspNet.Identity/IdentityUserLogin.cs diff --git a/src/Microsoft.Framework.Identity/IdentityUserRole.cs b/src/Microsoft.AspNet.Identity/IdentityUserRole.cs similarity index 100% rename from src/Microsoft.Framework.Identity/IdentityUserRole.cs rename to src/Microsoft.AspNet.Identity/IdentityUserRole.cs diff --git a/src/Microsoft.Framework.Identity/LockoutOptions.cs b/src/Microsoft.AspNet.Identity/LockoutOptions.cs similarity index 100% rename from src/Microsoft.Framework.Identity/LockoutOptions.cs rename to src/Microsoft.AspNet.Identity/LockoutOptions.cs diff --git a/src/Microsoft.Framework.Identity/Microsoft.Framework.Identity.kproj b/src/Microsoft.AspNet.Identity/Microsoft.AspNet.Identity.kproj similarity index 100% rename from src/Microsoft.Framework.Identity/Microsoft.Framework.Identity.kproj rename to src/Microsoft.AspNet.Identity/Microsoft.AspNet.Identity.kproj diff --git a/src/Microsoft.Framework.Identity/PasswordHasher.cs b/src/Microsoft.AspNet.Identity/PasswordHasher.cs similarity index 100% rename from src/Microsoft.Framework.Identity/PasswordHasher.cs rename to src/Microsoft.AspNet.Identity/PasswordHasher.cs diff --git a/src/Microsoft.Framework.Identity/PasswordOptions.cs b/src/Microsoft.AspNet.Identity/PasswordOptions.cs similarity index 100% rename from src/Microsoft.Framework.Identity/PasswordOptions.cs rename to src/Microsoft.AspNet.Identity/PasswordOptions.cs diff --git a/src/Microsoft.Framework.Identity/PasswordValidator.cs b/src/Microsoft.AspNet.Identity/PasswordValidator.cs similarity index 100% rename from src/Microsoft.Framework.Identity/PasswordValidator.cs rename to src/Microsoft.AspNet.Identity/PasswordValidator.cs diff --git a/src/Microsoft.Framework.Identity/PasswordVerificationResult.cs b/src/Microsoft.AspNet.Identity/PasswordVerificationResult.cs similarity index 100% rename from src/Microsoft.Framework.Identity/PasswordVerificationResult.cs rename to src/Microsoft.AspNet.Identity/PasswordVerificationResult.cs diff --git a/src/Microsoft.Framework.Identity/Resources.Designer.cs b/src/Microsoft.AspNet.Identity/Resources.Designer.cs similarity index 98% rename from src/Microsoft.Framework.Identity/Resources.Designer.cs rename to src/Microsoft.AspNet.Identity/Resources.Designer.cs index 0eeee0e10f..1a6cdb5338 100644 --- a/src/Microsoft.Framework.Identity/Resources.Designer.cs +++ b/src/Microsoft.AspNet.Identity/Resources.Designer.cs @@ -40,9 +40,9 @@ namespace Microsoft.AspNet.Identity { get { if (object.ReferenceEquals(resourceMan, null)) { #if NET45 - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Framework.Identity.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.AspNet.Identity.Resources", typeof(Resources).Assembly); #else - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Framework.Identity.Resources", System.Reflection.IntrospectionExtensions.GetTypeInfo(typeof(Resources)).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.AspNet.Identity.Resources", System.Reflection.IntrospectionExtensions.GetTypeInfo(typeof(Resources)).Assembly); #endif resourceMan = temp; } diff --git a/src/Microsoft.Framework.Identity/Resources.resx b/src/Microsoft.AspNet.Identity/Resources.resx similarity index 100% rename from src/Microsoft.Framework.Identity/Resources.resx rename to src/Microsoft.AspNet.Identity/Resources.resx diff --git a/src/Microsoft.Framework.Identity/Rfc6238AuthenticationService.cs b/src/Microsoft.AspNet.Identity/Rfc6238AuthenticationService.cs similarity index 100% rename from src/Microsoft.Framework.Identity/Rfc6238AuthenticationService.cs rename to src/Microsoft.AspNet.Identity/Rfc6238AuthenticationService.cs diff --git a/src/Microsoft.Framework.Identity/RoleManager.cs b/src/Microsoft.AspNet.Identity/RoleManager.cs similarity index 100% rename from src/Microsoft.Framework.Identity/RoleManager.cs rename to src/Microsoft.AspNet.Identity/RoleManager.cs diff --git a/src/Microsoft.Framework.Identity/RoleValidator.cs b/src/Microsoft.AspNet.Identity/RoleValidator.cs similarity index 100% rename from src/Microsoft.Framework.Identity/RoleValidator.cs rename to src/Microsoft.AspNet.Identity/RoleValidator.cs diff --git a/src/Microsoft.Framework.Identity/SignInManager.cs b/src/Microsoft.AspNet.Identity/SignInManager.cs similarity index 100% rename from src/Microsoft.Framework.Identity/SignInManager.cs rename to src/Microsoft.AspNet.Identity/SignInManager.cs diff --git a/src/Microsoft.Framework.Identity/SignInStatus.cs b/src/Microsoft.AspNet.Identity/SignInStatus.cs similarity index 100% rename from src/Microsoft.Framework.Identity/SignInStatus.cs rename to src/Microsoft.AspNet.Identity/SignInStatus.cs diff --git a/src/Microsoft.Framework.Identity/UserLoginInfo.cs b/src/Microsoft.AspNet.Identity/UserLoginInfo.cs similarity index 100% rename from src/Microsoft.Framework.Identity/UserLoginInfo.cs rename to src/Microsoft.AspNet.Identity/UserLoginInfo.cs diff --git a/src/Microsoft.Framework.Identity/UserManager.cs b/src/Microsoft.AspNet.Identity/UserManager.cs similarity index 100% rename from src/Microsoft.Framework.Identity/UserManager.cs rename to src/Microsoft.AspNet.Identity/UserManager.cs diff --git a/src/Microsoft.Framework.Identity/UserOptions.cs b/src/Microsoft.AspNet.Identity/UserOptions.cs similarity index 100% rename from src/Microsoft.Framework.Identity/UserOptions.cs rename to src/Microsoft.AspNet.Identity/UserOptions.cs diff --git a/src/Microsoft.Framework.Identity/UserValidator.cs b/src/Microsoft.AspNet.Identity/UserValidator.cs similarity index 100% rename from src/Microsoft.Framework.Identity/UserValidator.cs rename to src/Microsoft.AspNet.Identity/UserValidator.cs diff --git a/src/Microsoft.Framework.Identity/project.json b/src/Microsoft.AspNet.Identity/project.json similarity index 100% rename from src/Microsoft.Framework.Identity/project.json rename to src/Microsoft.AspNet.Identity/project.json diff --git a/test/Microsoft.Framework.Identity.AspNet.Test/HttpSignInTest.cs b/test/Microsoft.AspNet.Identity.Authentication.Test/HttpSignInTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.AspNet.Test/HttpSignInTest.cs rename to test/Microsoft.AspNet.Identity.Authentication.Test/HttpSignInTest.cs diff --git a/test/Microsoft.Framework.Identity.AspNet.Test/IdentityExtensionsTest.cs b/test/Microsoft.AspNet.Identity.Authentication.Test/IdentityExtensionsTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.AspNet.Test/IdentityExtensionsTest.cs rename to test/Microsoft.AspNet.Identity.Authentication.Test/IdentityExtensionsTest.cs diff --git a/test/Microsoft.Framework.Identity.AspNet.Test/Microsoft.Framework.Identity.AspNet.Test.kproj b/test/Microsoft.AspNet.Identity.Authentication.Test/Microsoft.AspNet.Identity.Authentication.Test.kproj similarity index 100% rename from test/Microsoft.Framework.Identity.AspNet.Test/Microsoft.Framework.Identity.AspNet.Test.kproj rename to test/Microsoft.AspNet.Identity.Authentication.Test/Microsoft.AspNet.Identity.Authentication.Test.kproj diff --git a/test/Microsoft.Framework.Identity.AspNet.Test/project.json b/test/Microsoft.AspNet.Identity.Authentication.Test/project.json similarity index 100% rename from test/Microsoft.Framework.Identity.AspNet.Test/project.json rename to test/Microsoft.AspNet.Identity.Authentication.Test/project.json diff --git a/test/Microsoft.Framework.Identity.EntityFramework.Test/InMemoryUserStoreTest.cs b/test/Microsoft.AspNet.Identity.EntityFramework.Test/InMemoryUserStoreTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.EntityFramework.Test/InMemoryUserStoreTest.cs rename to test/Microsoft.AspNet.Identity.EntityFramework.Test/InMemoryUserStoreTest.cs diff --git a/test/Microsoft.Framework.Identity.EntityFramework.Test/Microsoft.Framework.Identity.EntityFramework.Test.kproj b/test/Microsoft.AspNet.Identity.EntityFramework.Test/Microsoft.AspNet.Identity.EntityFramework.Test.kproj similarity index 100% rename from test/Microsoft.Framework.Identity.EntityFramework.Test/Microsoft.Framework.Identity.EntityFramework.Test.kproj rename to test/Microsoft.AspNet.Identity.EntityFramework.Test/Microsoft.AspNet.Identity.EntityFramework.Test.kproj diff --git a/test/Microsoft.Framework.Identity.EntityFramework.Test/RoleStoreTest.cs b/test/Microsoft.AspNet.Identity.EntityFramework.Test/RoleStoreTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.EntityFramework.Test/RoleStoreTest.cs rename to test/Microsoft.AspNet.Identity.EntityFramework.Test/RoleStoreTest.cs diff --git a/test/Microsoft.Framework.Identity.EntityFramework.Test/SqlUserStoreTest.cs b/test/Microsoft.AspNet.Identity.EntityFramework.Test/SqlUserStoreTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.EntityFramework.Test/SqlUserStoreTest.cs rename to test/Microsoft.AspNet.Identity.EntityFramework.Test/SqlUserStoreTest.cs diff --git a/test/Microsoft.Framework.Identity.EntityFramework.Test/StartupTest.cs b/test/Microsoft.AspNet.Identity.EntityFramework.Test/StartupTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.EntityFramework.Test/StartupTest.cs rename to test/Microsoft.AspNet.Identity.EntityFramework.Test/StartupTest.cs diff --git a/test/Microsoft.Framework.Identity.EntityFramework.Test/TestIdentityFactory.cs b/test/Microsoft.AspNet.Identity.EntityFramework.Test/TestIdentityFactory.cs similarity index 100% rename from test/Microsoft.Framework.Identity.EntityFramework.Test/TestIdentityFactory.cs rename to test/Microsoft.AspNet.Identity.EntityFramework.Test/TestIdentityFactory.cs diff --git a/test/Microsoft.Framework.Identity.EntityFramework.Test/project.json b/test/Microsoft.AspNet.Identity.EntityFramework.Test/project.json similarity index 100% rename from test/Microsoft.Framework.Identity.EntityFramework.Test/project.json rename to test/Microsoft.AspNet.Identity.EntityFramework.Test/project.json diff --git a/test/Microsoft.Framework.Identity.Test/ClaimsIdentityFactoryTest.cs b/test/Microsoft.AspNet.Identity.Test/ClaimsIdentityFactoryTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/ClaimsIdentityFactoryTest.cs rename to test/Microsoft.AspNet.Identity.Test/ClaimsIdentityFactoryTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/IdentityBuilderTest.cs b/test/Microsoft.AspNet.Identity.Test/IdentityBuilderTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/IdentityBuilderTest.cs rename to test/Microsoft.AspNet.Identity.Test/IdentityBuilderTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/IdentityOptionsTest.cs b/test/Microsoft.AspNet.Identity.Test/IdentityOptionsTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/IdentityOptionsTest.cs rename to test/Microsoft.AspNet.Identity.Test/IdentityOptionsTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/IdentityResultTest.cs b/test/Microsoft.AspNet.Identity.Test/IdentityResultTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/IdentityResultTest.cs rename to test/Microsoft.AspNet.Identity.Test/IdentityResultTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/Microsoft.Framework.Identity.Test.kproj b/test/Microsoft.AspNet.Identity.Test/Microsoft.AspNet.Identity.Test.kproj similarity index 100% rename from test/Microsoft.Framework.Identity.Test/Microsoft.Framework.Identity.Test.kproj rename to test/Microsoft.AspNet.Identity.Test/Microsoft.AspNet.Identity.Test.kproj diff --git a/test/Microsoft.Framework.Identity.Test/Microsoft.Aspnet.Identity.Test.csproj b/test/Microsoft.AspNet.Identity.Test/Microsoft.Aspnet.Identity.Test.csproj similarity index 100% rename from test/Microsoft.Framework.Identity.Test/Microsoft.Aspnet.Identity.Test.csproj rename to test/Microsoft.AspNet.Identity.Test/Microsoft.Aspnet.Identity.Test.csproj diff --git a/test/Microsoft.Framework.Identity.Test/NoopRoleStore.cs b/test/Microsoft.AspNet.Identity.Test/NoopRoleStore.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/NoopRoleStore.cs rename to test/Microsoft.AspNet.Identity.Test/NoopRoleStore.cs diff --git a/test/Microsoft.Framework.Identity.Test/NoopUserStore.cs b/test/Microsoft.AspNet.Identity.Test/NoopUserStore.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/NoopUserStore.cs rename to test/Microsoft.AspNet.Identity.Test/NoopUserStore.cs diff --git a/test/Microsoft.Framework.Identity.Test/PasswordValidatorTest.cs b/test/Microsoft.AspNet.Identity.Test/PasswordValidatorTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/PasswordValidatorTest.cs rename to test/Microsoft.AspNet.Identity.Test/PasswordValidatorTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/RoleManagerTest.cs b/test/Microsoft.AspNet.Identity.Test/RoleManagerTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/RoleManagerTest.cs rename to test/Microsoft.AspNet.Identity.Test/RoleManagerTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/RoleValidatorTest.cs b/test/Microsoft.AspNet.Identity.Test/RoleValidatorTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/RoleValidatorTest.cs rename to test/Microsoft.AspNet.Identity.Test/RoleValidatorTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/UserManagerTest.cs b/test/Microsoft.AspNet.Identity.Test/UserManagerTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/UserManagerTest.cs rename to test/Microsoft.AspNet.Identity.Test/UserManagerTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/UserValidatorTest.cs b/test/Microsoft.AspNet.Identity.Test/UserValidatorTest.cs similarity index 100% rename from test/Microsoft.Framework.Identity.Test/UserValidatorTest.cs rename to test/Microsoft.AspNet.Identity.Test/UserValidatorTest.cs diff --git a/test/Microsoft.Framework.Identity.Test/project.json b/test/Microsoft.AspNet.Identity.Test/project.json similarity index 100% rename from test/Microsoft.Framework.Identity.Test/project.json rename to test/Microsoft.AspNet.Identity.Test/project.json