├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── OAuth2.txt ├── netcore1.1 ├── Authentication-Test.sln ├── Authentication-Test │ ├── .bowerrc │ ├── Authentication-Test.csproj │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── HomeController.cs │ │ └── ManageController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Models │ │ ├── AccountViewModels │ │ │ ├── ExternalLoginConfirmationViewModel.cs │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── RegisterViewModel.cs │ │ │ ├── ResetPasswordViewModel.cs │ │ │ ├── SendCodeViewModel.cs │ │ │ └── VerifyCodeViewModel.cs │ │ ├── ApplicationUser.cs │ │ └── ManageViewModels │ │ │ ├── AddPhoneNumberViewModel.cs │ │ │ ├── ChangePasswordViewModel.cs │ │ │ ├── ConfigureTwoFactorViewModel.cs │ │ │ ├── FactorViewModel.cs │ │ │ ├── IndexViewModel.cs │ │ │ ├── ManageLoginsViewModel.cs │ │ │ ├── RemoveLoginViewModel.cs │ │ │ ├── SetPasswordViewModel.cs │ │ │ └── VerifyPhoneNumberViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── IEmailSender.cs │ │ ├── ISmsSender.cs │ │ └── MessageServices.cs │ ├── Startup.cs │ ├── Views │ │ ├── Account │ │ │ ├── AccessDenied.cshtml │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── Lockout.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ ├── SendCode.cshtml │ │ │ └── VerifyCode.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Manage │ │ │ ├── AddPhoneNumber.cshtml │ │ │ ├── ChangePassword.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ManageLogins.cshtml │ │ │ ├── SetPassword.cshtml │ │ │ └── VerifyPhoneNumber.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ ├── web.config │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Microsoft.AspNetCore.Authentication.QQ │ ├── AuthenticationManagerExtensions.cs │ ├── Microsoft.AspNetCore.Authentication.QQ.csproj │ ├── QQAuthenticationDefaults.cs │ ├── QQAuthenticationExtensions.cs │ ├── QQAuthenticationHandler.cs │ ├── QQAuthenticationHelper.cs │ ├── QQAuthenticationMiddleware.cs │ └── QQAuthenticationOptions.cs ├── Microsoft.AspNetCore.Authentication.Weixin │ ├── AuthenticationManagerExtensions.cs │ ├── Microsoft.AspNetCore.Authentication.Weixin.csproj │ ├── WeixinAuthenticationDefaults.cs │ ├── WeixinAuthenticationExtensions.cs │ ├── WeixinAuthenticationHandler.cs │ ├── WeixinAuthenticationHelper.cs │ ├── WeixinAuthenticationMiddleware.cs │ └── WeixinAuthenticationOptions.cs └── readme.md ├── netcore2.0 ├── Authentication-Test-3_0 │ ├── Areas │ │ └── Identity │ │ │ └── Pages │ │ │ └── _ViewStart.cshtml │ ├── Authentication-Test-3_0.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── web.config │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Authentication-Test.sln ├── Authentication-Test │ ├── .bowerrc │ ├── Authentication-Test.csproj │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── HomeController.cs │ │ └── ManageController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Extensions │ │ ├── EmailSenderExtensions.cs │ │ └── UrlHelperExtensions.cs │ ├── Models │ │ ├── AccountViewModels │ │ │ ├── ExternalLoginViewModel.cs │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── LoginWith2faViewModel.cs │ │ │ ├── LoginWithRecoveryCodeViewModel.cs │ │ │ ├── RegisterViewModel.cs │ │ │ └── ResetPasswordViewModel.cs │ │ ├── ApplicationUser.cs │ │ ├── ErrorViewModel.cs │ │ └── ManageViewModels │ │ │ ├── ChangePasswordViewModel.cs │ │ │ ├── EnableAuthenticatorViewModel.cs │ │ │ ├── ExternalLoginsViewModel.cs │ │ │ ├── GenerateRecoveryCodesViewModel.cs │ │ │ ├── IndexViewModel.cs │ │ │ ├── RemoveLoginViewModel.cs │ │ │ ├── SetPasswordViewModel.cs │ │ │ └── TwoFactorAuthenticationViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── EmailSender.cs │ │ └── IEmailSender.cs │ ├── Startup.cs │ ├── Views │ │ ├── Account │ │ │ ├── AccessDenied.cshtml │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── ExternalLogin.cshtml │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── Lockout.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── LoginWith2fa.cshtml │ │ │ ├── LoginWithRecoveryCode.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ └── SignedOut.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Manage │ │ │ ├── ChangePassword.cshtml │ │ │ ├── Disable2fa.cshtml │ │ │ ├── EnableAuthenticator.cshtml │ │ │ ├── ExternalLogins.cshtml │ │ │ ├── GenerateRecoveryCodes.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ManageNavPages.cs │ │ │ ├── ResetAuthenticator.cshtml │ │ │ ├── SetPassword.cshtml │ │ │ ├── TwoFactorAuthentication.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _ManageNav.cshtml │ │ │ ├── _StatusMessage.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ ├── web.config │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Microsoft.AspNetCore.Authentication.QQ │ ├── AuthenticationManagerExtensions.cs │ ├── Microsoft.AspNetCore.Authentication.QQ.csproj │ ├── QQAuthenticationDefaults.cs │ ├── QQAuthenticationExtensions.cs │ ├── QQAuthenticationHandler_2.cs │ ├── QQAuthenticationHandler_3.cs │ ├── QQAuthenticationHelper.cs │ └── QQAuthenticationOptions.cs ├── Microsoft.AspNetCore.Authentication.Weixin │ ├── AuthenticationManagerExtensions.cs │ ├── Microsoft.AspNetCore.Authentication.Weixin.csproj │ ├── WeixinAuthenticationDefaults.cs │ ├── WeixinAuthenticationExtensions.cs │ ├── WeixinAuthenticationHandler_2.cs │ ├── WeixinAuthenticationHandler_3.cs │ ├── WeixinAuthenticationHelper.cs │ └── WeixinAuthenticationOptions.cs └── readme.md └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/LICENSE -------------------------------------------------------------------------------- /OAuth2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/OAuth2.txt -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test.sln -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Authentication-Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Authentication-Test.csproj -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Controllers/AccountController.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Controllers/HomeController.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Controllers/ManageController.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/AccountViewModels/SendCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/AccountViewModels/SendCodeViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/AccountViewModels/VerifyCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/AccountViewModels/VerifyCodeViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/AddPhoneNumberViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/AddPhoneNumberViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/ConfigureTwoFactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/ConfigureTwoFactorViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/FactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/FactorViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/ManageLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/ManageLoginsViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Models/ManageViewModels/VerifyPhoneNumberViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Models/ManageViewModels/VerifyPhoneNumberViewModel.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Program.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Properties/launchSettings.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Services/IEmailSender.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Services/ISmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Services/ISmsSender.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Services/MessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Services/MessageServices.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Startup.cs -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Home/About.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/appsettings.Development.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/appsettings.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/bower.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/bundleconfig.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/web.config -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/css/site.css -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/favicon.ico -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /netcore1.1/Authentication-Test/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Authentication-Test/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.QQ/AuthenticationManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.QQ/AuthenticationManagerExtensions.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.QQ/Microsoft.AspNetCore.Authentication.QQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.QQ/Microsoft.AspNetCore.Authentication.QQ.csproj -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationDefaults.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationExtensions.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHandler.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHelper.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationMiddleware.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationOptions.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/AuthenticationManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/AuthenticationManagerExtensions.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/Microsoft.AspNetCore.Authentication.Weixin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/Microsoft.AspNetCore.Authentication.Weixin.csproj -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationDefaults.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationExtensions.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHandler.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHelper.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationMiddleware.cs -------------------------------------------------------------------------------- /netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationOptions.cs -------------------------------------------------------------------------------- /netcore1.1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore1.1/readme.md -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Authentication-Test-3_0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Authentication-Test-3_0.csproj -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Program.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Properties/launchSettings.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Startup.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/appsettings.Development.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/appsettings.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/web.config -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/css/site.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/js/site.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test-3_0/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test.sln -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Authentication-Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Authentication-Test.csproj -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Controllers/AccountController.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Controllers/HomeController.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Controllers/ManageController.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Extensions/EmailSenderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Extensions/EmailSenderExtensions.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Extensions/UrlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Extensions/UrlHelperExtensions.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/AccountViewModels/ExternalLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/AccountViewModels/ExternalLoginViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/AccountViewModels/LoginWith2faViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/AccountViewModels/LoginWith2faViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/AccountViewModels/LoginWithRecoveryCodeViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ManageViewModels/EnableAuthenticatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ManageViewModels/EnableAuthenticatorViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ManageViewModels/ExternalLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ManageViewModels/ExternalLoginsViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ManageViewModels/GenerateRecoveryCodesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ManageViewModels/GenerateRecoveryCodesViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Program.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Properties/launchSettings.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Services/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Services/EmailSender.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Services/IEmailSender.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Startup.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Account/SignedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Account/SignedOut.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Home/About.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Authentication_Test.Views.Manage -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/appsettings.Development.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/appsettings.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/bower.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/bundleconfig.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/web.config -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/css/site.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/favicon.ico -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /netcore2.0/Authentication-Test/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Authentication-Test/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.QQ/AuthenticationManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.QQ/AuthenticationManagerExtensions.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.QQ/Microsoft.AspNetCore.Authentication.QQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.QQ/Microsoft.AspNetCore.Authentication.QQ.csproj -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationDefaults.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationExtensions.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHandler_2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHandler_2.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHandler_3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHandler_3.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationHelper.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.QQ/QQAuthenticationOptions.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/AuthenticationManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/AuthenticationManagerExtensions.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/Microsoft.AspNetCore.Authentication.Weixin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/Microsoft.AspNetCore.Authentication.Weixin.csproj -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationDefaults.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationExtensions.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHandler_2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHandler_2.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHandler_3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHandler_3.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationHelper.cs -------------------------------------------------------------------------------- /netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/Microsoft.AspNetCore.Authentication.Weixin/WeixinAuthenticationOptions.cs -------------------------------------------------------------------------------- /netcore2.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/netcore2.0/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnkwlp/AspNetCore.AuthenticationQQ-WebChat/HEAD/readme.md --------------------------------------------------------------------------------