├── .gitattributes ├── .gitignore ├── CoreWebApp.Quickstart.sln ├── LICENSE ├── gitignore ├── global.json ├── nuget.config ├── readme.md ├── readme ├── STS.PNG ├── console.PNG ├── postman.PNG ├── spa.PNG └── swagger.PNG ├── src ├── Api │ ├── Api.xproj │ ├── Controllers │ │ └── IdentityController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.json │ ├── project.json │ └── web.config ├── Clients │ ├── ConsoleClientCredentialsFlow │ │ ├── Console Client Credentials Flow.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── ConsoleClientCredentialsFlowPostBody │ │ ├── Console ClientCredentials Flow PostBody.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── ConsoleIntrospectionClient │ │ ├── Console Introspection Client.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── ConsoleResourceOwnerFlow │ │ ├── Console ResourceOwner Flow.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── ConsoleResourceOwnerFlowPublic │ │ ├── Console ResourceOwner Flow Public.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── ConsoleResourceOwnerFlowReference │ │ ├── Console ResourceOwner Flow Reference.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── ConsoleResourceOwnerFlowRefreshToken │ │ ├── Console ResourceOwner Flow RefreshToken.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── ConsoleResourceOwnerFlowUserInfo │ │ ├── Console ResourceOwner Flow UserInfo.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── Constants │ │ ├── ConsoleExtensions.cs │ │ ├── Constants.cs │ │ ├── Constants.xproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── project.json │ ├── JsOAuth2 │ │ ├── JavaScript OAuth2.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── package.json │ │ ├── project.json │ │ ├── web.config │ │ └── wwwroot │ │ │ └── index.html │ └── MvcHybrid │ │ ├── .bowerrc │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── Mvc Hybrid.xproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Home │ │ │ ├── CallApi.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Secure.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ ├── bower.json │ │ ├── bundleconfig.json │ │ ├── project.json │ │ ├── web.config │ │ └── wwwroot │ │ ├── _references.js │ │ ├── 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 ├── IdentityServerWithAspNetIdentity │ ├── .bowerrc │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── ConsentController.cs │ │ ├── HomeController.cs │ │ ├── IdentityController.cs │ │ └── ManageController.cs │ ├── CoreWebApp.xproj │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Identity │ │ ├── IdentityConfig.cs │ │ └── idsvr3test.pfx │ ├── Migrations │ │ ├── 20160909194214_InitialIdentityServerMigration.Designer.cs │ │ ├── 20160909194214_InitialIdentityServerMigration.cs │ │ ├── ConfigurationDb │ │ │ ├── 20160909194219_InitialIdentityServerMigration.Designer.cs │ │ │ ├── 20160909194219_InitialIdentityServerMigration.cs │ │ │ └── ConfigurationDbContextModelSnapshot.cs │ │ └── PersistedGrantDbContextModelSnapshot.cs │ ├── Models │ │ ├── AccountViewModels │ │ │ ├── ExternalLoginConfirmationViewModel.cs │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ ├── LoggedOutViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── LogoutViewModel.cs │ │ │ ├── RegisterViewModel.cs │ │ │ ├── ResetPasswordViewModel.cs │ │ │ ├── SendCodeViewModel.cs │ │ │ └── VerifyCodeViewModel.cs │ │ ├── ApplicationUser.cs │ │ ├── ConsentModels │ │ │ ├── ConsentInputModel.cs │ │ │ └── ConsentViewModel.cs │ │ ├── ErrorViewModel.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 │ │ │ ├── ConfirmEmail.cshtml │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── ForgotPassword.cshtml │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── Lockout.cshtml │ │ │ ├── LoggedOut.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Logout.cshtml │ │ │ ├── Register.cshtml │ │ │ ├── ResetPassword.cshtml │ │ │ ├── ResetPasswordConfirmation.cshtml │ │ │ ├── SendCode.cshtml │ │ │ └── VerifyCode.cshtml │ │ ├── Consent │ │ │ ├── Index.cshtml │ │ │ └── _ScopeListItem.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 │ │ │ └── _ValidationSummary.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ ├── project.json │ ├── web.config │ └── wwwroot │ │ ├── _references.js │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── index.html │ │ ├── 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 │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── changelog.md │ │ │ ├── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── additional │ │ │ │ │ ├── accept.js │ │ │ │ │ ├── additional.js │ │ │ │ │ ├── alphanumeric.js │ │ │ │ │ ├── bankaccountNL.js │ │ │ │ │ ├── bankorgiroaccountNL.js │ │ │ │ │ ├── bic.js │ │ │ │ │ ├── cifES.js │ │ │ │ │ ├── cpfBR.js │ │ │ │ │ ├── creditcard.js │ │ │ │ │ ├── creditcardtypes.js │ │ │ │ │ ├── currency.js │ │ │ │ │ ├── dateFA.js │ │ │ │ │ ├── dateITA.js │ │ │ │ │ ├── dateNL.js │ │ │ │ │ ├── extension.js │ │ │ │ │ ├── giroaccountNL.js │ │ │ │ │ ├── iban.js │ │ │ │ │ ├── integer.js │ │ │ │ │ ├── ipv4.js │ │ │ │ │ ├── ipv6.js │ │ │ │ │ ├── lettersonly.js │ │ │ │ │ ├── letterswithbasicpunc.js │ │ │ │ │ ├── mobileNL.js │ │ │ │ │ ├── mobileUK.js │ │ │ │ │ ├── nieES.js │ │ │ │ │ ├── nifES.js │ │ │ │ │ ├── notEqualTo.js │ │ │ │ │ ├── nowhitespace.js │ │ │ │ │ ├── pattern.js │ │ │ │ │ ├── phoneNL.js │ │ │ │ │ ├── phoneUK.js │ │ │ │ │ ├── phoneUS.js │ │ │ │ │ ├── phonesUK.js │ │ │ │ │ ├── postalCodeCA.js │ │ │ │ │ ├── postalcodeBR.js │ │ │ │ │ ├── postalcodeIT.js │ │ │ │ │ ├── postalcodeNL.js │ │ │ │ │ ├── postcodeUK.js │ │ │ │ │ ├── require_from_group.js │ │ │ │ │ ├── skip_or_fill_minimum.js │ │ │ │ │ ├── statesUS.js │ │ │ │ │ ├── strippedminlength.js │ │ │ │ │ ├── time.js │ │ │ │ │ ├── time12h.js │ │ │ │ │ ├── url2.js │ │ │ │ │ ├── vinUS.js │ │ │ │ │ ├── zipcodeUS.js │ │ │ │ │ └── ziprange.js │ │ │ │ ├── ajax.js │ │ │ │ ├── core.js │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_bn_BD.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_es_AR.js │ │ │ │ │ ├── messages_es_PE.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_ge.js │ │ │ │ │ ├── messages_gl.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_hy_AM.js │ │ │ │ │ ├── messages_id.js │ │ │ │ │ ├── messages_is.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_ko.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_mk.js │ │ │ │ │ ├── messages_my.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sr_lat.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_tj.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_es_CL.js │ │ │ │ │ ├── methods_fi.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ └── methods_pt.js │ │ │ └── validation.jquery.json │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ │ └── src │ │ │ ├── .eslintrc │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ │ ├── libs │ │ ├── bootstrap.min.css │ │ └── oidc-client.js │ │ └── silent_renew.html └── MvcClient │ └── Properties │ └── launchSettings.json └── test └── STS.Test ├── .gitignore ├── Tests.cs ├── UnitTests.xproj ├── project.json └── xunit.runner.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/.gitignore -------------------------------------------------------------------------------- /CoreWebApp.Quickstart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/CoreWebApp.Quickstart.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/LICENSE -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/gitignore -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/nuget.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/readme.md -------------------------------------------------------------------------------- /readme/STS.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/readme/STS.PNG -------------------------------------------------------------------------------- /readme/console.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/readme/console.PNG -------------------------------------------------------------------------------- /readme/postman.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/readme/postman.PNG -------------------------------------------------------------------------------- /readme/spa.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/readme/spa.PNG -------------------------------------------------------------------------------- /readme/swagger.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/readme/swagger.PNG -------------------------------------------------------------------------------- /src/Api/Api.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Api/Api.xproj -------------------------------------------------------------------------------- /src/Api/Controllers/IdentityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Api/Controllers/IdentityController.cs -------------------------------------------------------------------------------- /src/Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Api/Program.cs -------------------------------------------------------------------------------- /src/Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Api/Startup.cs -------------------------------------------------------------------------------- /src/Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Api/appsettings.json -------------------------------------------------------------------------------- /src/Api/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Api/project.json -------------------------------------------------------------------------------- /src/Api/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Api/web.config -------------------------------------------------------------------------------- /src/Clients/ConsoleClientCredentialsFlow/Console Client Credentials Flow.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleClientCredentialsFlow/Console Client Credentials Flow.xproj -------------------------------------------------------------------------------- /src/Clients/ConsoleClientCredentialsFlow/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleClientCredentialsFlow/Program.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleClientCredentialsFlow/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleClientCredentialsFlow/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleClientCredentialsFlow/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleClientCredentialsFlow/project.json -------------------------------------------------------------------------------- /src/Clients/ConsoleClientCredentialsFlowPostBody/Console ClientCredentials Flow PostBody.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleClientCredentialsFlowPostBody/Console ClientCredentials Flow PostBody.xproj -------------------------------------------------------------------------------- /src/Clients/ConsoleClientCredentialsFlowPostBody/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleClientCredentialsFlowPostBody/Program.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleClientCredentialsFlowPostBody/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleClientCredentialsFlowPostBody/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleClientCredentialsFlowPostBody/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleClientCredentialsFlowPostBody/project.json -------------------------------------------------------------------------------- /src/Clients/ConsoleIntrospectionClient/Console Introspection Client.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleIntrospectionClient/Console Introspection Client.xproj -------------------------------------------------------------------------------- /src/Clients/ConsoleIntrospectionClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleIntrospectionClient/Program.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleIntrospectionClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleIntrospectionClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleIntrospectionClient/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleIntrospectionClient/project.json -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlow/Console ResourceOwner Flow.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlow/Console ResourceOwner Flow.xproj -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlow/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlow/Program.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlow/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlow/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlow/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlow/project.json -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowPublic/Console ResourceOwner Flow Public.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowPublic/Console ResourceOwner Flow Public.xproj -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowPublic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowPublic/Program.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowPublic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowPublic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowPublic/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowPublic/project.json -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowReference/Console ResourceOwner Flow Reference.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowReference/Console ResourceOwner Flow Reference.xproj -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowReference/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowReference/Program.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowReference/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowReference/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowReference/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowReference/project.json -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowRefreshToken/Console ResourceOwner Flow RefreshToken.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowRefreshToken/Console ResourceOwner Flow RefreshToken.xproj -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowRefreshToken/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowRefreshToken/Program.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowRefreshToken/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowRefreshToken/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowRefreshToken/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowRefreshToken/project.json -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowUserInfo/Console ResourceOwner Flow UserInfo.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowUserInfo/Console ResourceOwner Flow UserInfo.xproj -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowUserInfo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowUserInfo/Program.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowUserInfo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowUserInfo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/ConsoleResourceOwnerFlowUserInfo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/ConsoleResourceOwnerFlowUserInfo/project.json -------------------------------------------------------------------------------- /src/Clients/Constants/ConsoleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/Constants/ConsoleExtensions.cs -------------------------------------------------------------------------------- /src/Clients/Constants/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/Constants/Constants.cs -------------------------------------------------------------------------------- /src/Clients/Constants/Constants.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/Constants/Constants.xproj -------------------------------------------------------------------------------- /src/Clients/Constants/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/Constants/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/Constants/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/Constants/project.json -------------------------------------------------------------------------------- /src/Clients/JsOAuth2/JavaScript OAuth2.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/JsOAuth2/JavaScript OAuth2.xproj -------------------------------------------------------------------------------- /src/Clients/JsOAuth2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/JsOAuth2/Program.cs -------------------------------------------------------------------------------- /src/Clients/JsOAuth2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/JsOAuth2/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Clients/JsOAuth2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/JsOAuth2/Startup.cs -------------------------------------------------------------------------------- /src/Clients/JsOAuth2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/JsOAuth2/package.json -------------------------------------------------------------------------------- /src/Clients/JsOAuth2/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/JsOAuth2/project.json -------------------------------------------------------------------------------- /src/Clients/JsOAuth2/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/JsOAuth2/web.config -------------------------------------------------------------------------------- /src/Clients/JsOAuth2/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/JsOAuth2/wwwroot/index.html -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Mvc Hybrid.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Mvc Hybrid.xproj -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Program.cs -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Startup.cs -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Views/Home/CallApi.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Views/Home/CallApi.cshtml -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Views/Home/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Views/Home/Error.cshtml -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Views/Home/Secure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Views/Home/Secure.cshtml -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/appsettings.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/bower.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/bundleconfig.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/project.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/web.config -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/_references.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/Clients/MvcHybrid/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/Clients/MvcHybrid/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Controllers/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Controllers/ConsentController.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Controllers/IdentityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Controllers/IdentityController.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Controllers/ManageController.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/CoreWebApp.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/CoreWebApp.xproj -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Identity/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Identity/IdentityConfig.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Identity/idsvr3test.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Identity/idsvr3test.pfx -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Migrations/20160909194214_InitialIdentityServerMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Migrations/20160909194214_InitialIdentityServerMigration.Designer.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Migrations/20160909194214_InitialIdentityServerMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Migrations/20160909194214_InitialIdentityServerMigration.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Migrations/ConfigurationDb/20160909194219_InitialIdentityServerMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Migrations/ConfigurationDb/20160909194219_InitialIdentityServerMigration.Designer.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Migrations/ConfigurationDb/20160909194219_InitialIdentityServerMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Migrations/ConfigurationDb/20160909194219_InitialIdentityServerMigration.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Migrations/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Migrations/ConfigurationDb/ConfigurationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Migrations/PersistedGrantDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Migrations/PersistedGrantDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/LogoutViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/SendCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/SendCodeViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/VerifyCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/AccountViewModels/VerifyCodeViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ConsentModels/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ConsentModels/ConsentInputModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ConsentModels/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ConsentModels/ConsentViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/AddPhoneNumberViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/AddPhoneNumberViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/ConfigureTwoFactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/ConfigureTwoFactorViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/FactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/FactorViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/ManageLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/ManageLoginsViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/VerifyPhoneNumberViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Models/ManageViewModels/VerifyPhoneNumberViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Program.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Services/IEmailSender.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Services/ISmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Services/ISmsSender.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Services/MessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Services/MessageServices.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Startup.cs -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Consent/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Consent/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Home/About.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/appsettings.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/bower.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/bundleconfig.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/project.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/web.config -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/_references.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/index.html -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/Gruntfile.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/README.md -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/bower.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/changelog.md -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/package.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/accept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/accept.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/additional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/additional.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/alphanumeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/alphanumeric.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/bankaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/bankaccountNL.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/bankorgiroaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/bankorgiroaccountNL.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/bic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/bic.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/cifES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/cifES.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/cpfBR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/cpfBR.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/creditcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/creditcard.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/creditcardtypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/creditcardtypes.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/currency.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/dateFA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/dateFA.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/dateITA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/dateITA.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/dateNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/dateNL.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/extension.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/giroaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/giroaccountNL.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/iban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/iban.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/integer.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/ipv4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/ipv4.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/ipv6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/ipv6.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/lettersonly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/lettersonly.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/letterswithbasicpunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/letterswithbasicpunc.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/mobileNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/mobileNL.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/mobileUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/mobileUK.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/nieES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/nieES.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/nifES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/nifES.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/notEqualTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/notEqualTo.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/nowhitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/nowhitespace.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/pattern.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/phoneNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/phoneNL.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/phoneUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/phoneUK.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/phoneUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/phoneUS.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/phonesUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/phonesUK.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postalCodeCA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postalCodeCA.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postalcodeBR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postalcodeBR.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postalcodeIT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postalcodeIT.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postalcodeNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postalcodeNL.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postcodeUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/postcodeUK.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/require_from_group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/require_from_group.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/skip_or_fill_minimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/skip_or_fill_minimum.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/statesUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/statesUS.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/strippedminlength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/strippedminlength.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/time.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/time12h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/time12h.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/url2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/url2.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/vinUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/vinUS.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/zipcodeUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/zipcodeUS.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/ziprange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/additional/ziprange.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/ajax.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/core.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ar.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_bg.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_bn_BD.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ca.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_cs.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_da.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_de.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_el.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_es.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_es_AR.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_es_PE.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_et.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_eu.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_fa.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_fi.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_fr.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ge.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_gl.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_he.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_hr.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_hu.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_hy_AM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_hy_AM.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_id.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_is.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_it.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ja.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ka.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_kk.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ko.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_lt.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_lv.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_mk.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_my.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_nl.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_no.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_pl.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_pt_BR.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_pt_PT.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ro.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_ru.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_si.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sk.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sl.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sr.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sr_lat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sr_lat.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_sv.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_th.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_tj.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_tr.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_uk.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_vi.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_zh.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/messages_zh_TW.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_de.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_es_CL.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_fi.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_nl.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/src/localization/methods_pt.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/validation.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery-validation/validation.jquery.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/core.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/.eslintrc -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/ready-no-deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/ready-no-deferred.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/readyException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/readyException.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/support.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/isHiddenWithinTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/isHiddenWithinTree.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/deferred/exceptionHook.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/var/rcheckableType.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/var/rscriptType.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/ObjectFunctionString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/ObjectFunctionString.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/document.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/fnToString.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/libs/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/libs/bootstrap.min.css -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/libs/oidc-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/libs/oidc-client.js -------------------------------------------------------------------------------- /src/IdentityServerWithAspNetIdentity/wwwroot/silent_renew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/IdentityServerWithAspNetIdentity/wwwroot/silent_renew.html -------------------------------------------------------------------------------- /src/MvcClient/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/src/MvcClient/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/STS.Test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/test/STS.Test/.gitignore -------------------------------------------------------------------------------- /test/STS.Test/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/test/STS.Test/Tests.cs -------------------------------------------------------------------------------- /test/STS.Test/UnitTests.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/test/STS.Test/UnitTests.xproj -------------------------------------------------------------------------------- /test/STS.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/test/STS.Test/project.json -------------------------------------------------------------------------------- /test/STS.Test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisRichner/CoreWebApp.Quickstart/HEAD/test/STS.Test/xunit.runner.json --------------------------------------------------------------------------------