├── TeamX.Security.AuthServer ├── wwwroot │ ├── js │ │ ├── site.min.js │ │ └── site.js │ ├── favicon.ico │ ├── lib │ │ ├── bootstrap │ │ │ ├── dist │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ └── npm.js │ │ │ ├── .bower.json │ │ │ └── LICENSE │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ └── LICENSE.txt │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.min.js │ │ │ │ └── jquery.validate.min.js │ │ └── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ └── jquery.validate.unobtrusive.js │ ├── css │ │ ├── site.min.css │ │ └── site.css │ └── images │ │ ├── banner2.svg │ │ ├── banner1.svg │ │ ├── banner3.svg │ │ └── banner4.svg ├── Views │ ├── _ViewStart.cshtml │ ├── _ViewImports.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ └── Shared │ │ ├── Error.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ └── _Layout.cshtml ├── obj │ ├── Debug │ │ └── netcoreapp2.0 │ │ │ ├── TeamX.Security.AuthServer.AssemblyInfoInputs.cache │ │ │ ├── TeamX.Security.AuthServer.csproj.CoreCompileInputs.cache │ │ │ ├── TeamX.Security.AuthServer.dll │ │ │ ├── TeamX.Security.AuthServer.pdb │ │ │ ├── TeamX.Security.AuthServer.csprojResolveAssemblyReference.cache │ │ │ ├── TeamX.Security.AuthServer.AssemblyInfo.cs │ │ │ └── TeamX.Security.AuthServer.csproj.FileListAbsolute.txt │ ├── TeamX.Security.AuthServer.csproj.nuget.cache │ ├── TeamX.Security.AuthServer.csproj.nuget.g.props │ └── TeamX.Security.AuthServer.csproj.nuget.g.targets ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── TeamX.Security.AuthServer.dll │ │ ├── TeamX.Security.AuthServer.pdb │ │ ├── TeamX.Security.AuthServer.runtimeconfig.dev.json │ │ └── TeamX.Security.AuthServer.runtimeconfig.json ├── appsettings.Development.json ├── Models │ └── ErrorViewModel.cs ├── TeamX.Security.AuthServer.csproj.user ├── TeamX.Security.AuthServer.csproj ├── bundleconfig.json ├── Properties │ └── launchSettings.json ├── Program.cs ├── Controllers │ └── HomeController.cs ├── Config.cs ├── tempkey.rsa └── Startup.cs ├── TeamX.Security.Client ├── obj │ ├── Debug │ │ ├── netcoreapp2.1 │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── TeamX.Security.Client.AssemblyInfoInputs.cache │ │ │ ├── TeamX.Security.Client.csproj.CoreCompileInputs.cache │ │ │ └── TeamX.Security.Client.AssemblyInfo.cs │ │ └── netcoreapp2.0 │ │ │ ├── TeamX.Security.Client.AssemblyInfoInputs.cache │ │ │ ├── TeamX.Security.Client.csproj.CoreCompileInputs.cache │ │ │ ├── TeamX.Security.Client.dll │ │ │ ├── TeamX.Security.Client.pdb │ │ │ ├── TeamX.Security.Client.csprojResolveAssemblyReference.cache │ │ │ ├── TeamX.Security.Client.AssemblyInfo.cs │ │ │ └── TeamX.Security.Client.csproj.FileListAbsolute.txt │ ├── TeamX.Security.Client.csproj.nuget.cache │ ├── TeamX.Security.Client.csproj.nuget.g.targets │ └── TeamX.Security.Client.csproj.nuget.g.props ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── TeamX.Security.Client.dll │ │ ├── TeamX.Security.Client.pdb │ │ ├── TeamX.Security.Client.runtimeconfig.json │ │ └── TeamX.Security.Client.runtimeconfig.dev.json ├── TeamX.Security.Client.csproj └── Program.cs ├── TeamX.Security.API ├── obj │ ├── Debug │ │ └── netcoreapp2.0 │ │ │ ├── TeamX.Security.API.AssemblyInfoInputs.cache │ │ │ ├── TeamX.Security.API.csproj.CoreCompileInputs.cache │ │ │ ├── TeamX.Security.API.dll │ │ │ ├── TeamX.Security.API.pdb │ │ │ ├── TeamX.Security.API.csprojResolveAssemblyReference.cache │ │ │ ├── TeamX.Security.API.AssemblyInfo.cs │ │ │ └── TeamX.Security.API.csproj.FileListAbsolute.txt │ ├── TeamX.Security.API.csproj.nuget.cache │ ├── TeamX.Security.API.csproj.nuget.g.props │ └── TeamX.Security.API.csproj.nuget.g.targets ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── TeamX.Security.API.dll │ │ ├── TeamX.Security.API.pdb │ │ ├── TeamX.Security.API.runtimeconfig.dev.json │ │ └── TeamX.Security.API.runtimeconfig.json ├── appsettings.Development.json ├── appsettings.json ├── Controllers │ └── IdentityController.cs ├── TeamX.Security.API.csproj ├── TeamX.Security.API.csproj.user ├── Program.cs ├── Properties │ └── launchSettings.json └── Startup.cs ├── TeamX.Security.SimpleClient ├── obj │ ├── Debug │ │ └── netcoreapp2.0 │ │ │ ├── TeamX.Security.MVCClient.AssemblyInfoInputs.cache │ │ │ ├── TeamX.Security.MVCClient.csproj.CoreCompileInputs.cache │ │ │ ├── TeamX.Security.SimpleClient.AssemblyInfoInputs.cache │ │ │ ├── TeamX.Security.SimpleClient.csproj.CoreCompileInputs.cache │ │ │ ├── TeamX.Security.MVCClient.dll │ │ │ ├── TeamX.Security.MVCClient.pdb │ │ │ ├── TeamX.Security.SimpleClient.dll │ │ │ ├── TeamX.Security.SimpleClient.pdb │ │ │ ├── TeamX.Security.MVCClient.csprojResolveAssemblyReference.cache │ │ │ ├── TeamX.Security.SimpleClient.csprojResolveAssemblyReference.cache │ │ │ ├── TeamX.Security.MVCClient.AssemblyInfo.cs │ │ │ ├── TeamX.Security.SimpleClient.AssemblyInfo.cs │ │ │ ├── TeamX.Security.MVCClient.csproj.FileListAbsolute.txt │ │ │ └── TeamX.Security.SimpleClient.csproj.FileListAbsolute.txt │ ├── TeamX.Security.MVCClient.csproj.nuget.cache │ ├── TeamX.Security.SimpleClient.csproj.nuget.cache │ ├── TeamX.Security.MVCClient.csproj.nuget.g.props │ ├── TeamX.Security.SimpleClient.csproj.nuget.g.props │ ├── TeamX.Security.MVCClient.csproj.nuget.g.targets │ └── TeamX.Security.SimpleClient.csproj.nuget.g.targets ├── bin │ └── Debug │ │ └── netcoreapp2.0 │ │ ├── TeamX.Security.MVCClient.dll │ │ ├── TeamX.Security.MVCClient.pdb │ │ ├── TeamX.Security.SimpleClient.dll │ │ ├── TeamX.Security.SimpleClient.pdb │ │ ├── TeamX.Security.MVCClient.runtimeconfig.dev.json │ │ ├── TeamX.Security.MVCClient.runtimeconfig.json │ │ ├── TeamX.Security.SimpleClient.runtimeconfig.dev.json │ │ └── TeamX.Security.SimpleClient.runtimeconfig.json ├── TeamX.Security.MVCClient.csproj.user ├── TeamX.Security.MVCClient.csproj ├── Properties │ └── launchSettings.json ├── Startup.cs └── Program.cs ├── README.md ├── .gitignore └── TeamX.Security.Authentication.sln /TeamX.Security.AuthServer/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TeamX.Security.API/obj/Debug/netcoreapp2.0/TeamX.Security.API.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b237ff57227c286d929123b2edfbaa80f46cad11 2 | -------------------------------------------------------------------------------- /TeamX.Security.API/obj/Debug/netcoreapp2.0/TeamX.Security.API.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6cee68ac1595ea53e58e809a436ab6c30d604aaf 2 | -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.0/TeamX.Security.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a0c510cbf0f009fc47e3fcf71f5ebe9d85c88d25 2 | -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.1/TeamX.Security.Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a0c510cbf0f009fc47e3fcf71f5ebe9d85c88d25 2 | -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.0/TeamX.Security.Client.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5d82099492654fd3b5df20668550c4ff0473feb9 2 | -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.1/TeamX.Security.Client.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3afd41b2fa2d36494dd79f9601b850120e112af9 2 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/obj/Debug/netcoreapp2.0/TeamX.Security.AuthServer.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2accd83c4139e1ced566843fdfa2c31df78e2ec4 2 | -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.MVCClient.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | def4f150f08bf1de0920338837c2604ea56ac081 2 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/obj/Debug/netcoreapp2.0/TeamX.Security.AuthServer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f284284b6ccf9266465938f4299fbafafb58d009 2 | -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.MVCClient.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 91fa8062e630326db6ec1aa9ac7e8de8f1e236ae 2 | -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 459987b777af6d3796171338debf73905dac0942 2 | -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 91fa8062e630326db6ec1aa9ac7e8de8f1e236ae 2 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using TeamX.Security.AuthServer 2 | @using TeamX.Security.AuthServer.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/wwwroot/favicon.ico -------------------------------------------------------------------------------- /TeamX.Security.API/obj/TeamX.Security.API.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "a5YW0TyBOjBuTjAfapI6odeIjsTbfroX2vJIPl5gWxuZ1hAAJA9D4WqWBmZ2zdkEonlEAjZ41dItmrTx4OMibA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/TeamX.Security.Client.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "XqD3Qa3u7xfy7C9TSwHpub9W6PhPOab4H24nK9Z6mzwvsJwwqS/N5Hn3SWnQnIgSTuYbN1hAsGuq1cQf9aKNpw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /TeamX.Security.API/bin/Debug/netcoreapp2.0/TeamX.Security.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.API/bin/Debug/netcoreapp2.0/TeamX.Security.API.dll -------------------------------------------------------------------------------- /TeamX.Security.API/bin/Debug/netcoreapp2.0/TeamX.Security.API.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.API/bin/Debug/netcoreapp2.0/TeamX.Security.API.pdb -------------------------------------------------------------------------------- /TeamX.Security.API/obj/Debug/netcoreapp2.0/TeamX.Security.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.API/obj/Debug/netcoreapp2.0/TeamX.Security.API.dll -------------------------------------------------------------------------------- /TeamX.Security.API/obj/Debug/netcoreapp2.0/TeamX.Security.API.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.API/obj/Debug/netcoreapp2.0/TeamX.Security.API.pdb -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |
Use this area to provide additional information.
8 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/obj/TeamX.Security.AuthServer.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "u3kbqIIfO2k2H1MXRgyILKliZCW4hg2QxJzYAptE6pJfcaAZyd8OpQ8KkghNKKc7UqUZAzThEAOmg8Z/0cES9A==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/TeamX.Security.MVCClient.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "NG//9UpdTo40RtAM8B/968ChslWHk6GLTd8eLeWp4nL5QJqMipPgZ51XpGDMseJRbZrxKjJxUNJ8xUdVgTsirA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /TeamX.Security.Client/bin/Debug/netcoreapp2.0/TeamX.Security.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.Client/bin/Debug/netcoreapp2.0/TeamX.Security.Client.dll -------------------------------------------------------------------------------- /TeamX.Security.Client/bin/Debug/netcoreapp2.0/TeamX.Security.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.Client/bin/Debug/netcoreapp2.0/TeamX.Security.Client.pdb -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.0/TeamX.Security.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.Client/obj/Debug/netcoreapp2.0/TeamX.Security.Client.dll -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.0/TeamX.Security.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.Client/obj/Debug/netcoreapp2.0/TeamX.Security.Client.pdb -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/TeamX.Security.SimpleClient.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "mKcQ6VOILZF/bnXDrf2O9YJ/qap/+DasXBepyFsD5W1nhnioWp7Q+PoQxax4uzLEu7XygUWjpjySmpEJVd/PiA==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/bin/Debug/netcoreapp2.0/TeamX.Security.AuthServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/bin/Debug/netcoreapp2.0/TeamX.Security.AuthServer.dll -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/bin/Debug/netcoreapp2.0/TeamX.Security.AuthServer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/bin/Debug/netcoreapp2.0/TeamX.Security.AuthServer.pdb -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/obj/Debug/netcoreapp2.0/TeamX.Security.AuthServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/obj/Debug/netcoreapp2.0/TeamX.Security.AuthServer.dll -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/obj/Debug/netcoreapp2.0/TeamX.Security.AuthServer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/obj/Debug/netcoreapp2.0/TeamX.Security.AuthServer.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TeamX.Security.AuthenticationServer-IdentityServerv4- 2 | Project for IdentityServer4 with .Net Core 3 | 4 | Code for the blog post: https://neelbhatt.com/2018/03/08/web-api-security-with-identityserver4-identityserver4-with-net-core-part-iii/ 5 | -------------------------------------------------------------------------------- /TeamX.Security.API/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.MVCClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.MVCClient.dll -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.MVCClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.MVCClient.pdb -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.MVCClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.MVCClient.dll -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.MVCClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.MVCClient.pdb -------------------------------------------------------------------------------- /TeamX.Security.Client/bin/Debug/netcoreapp2.0/TeamX.Security.Client.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.dll -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.pdb -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.dll -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.pdb -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /TeamX.Security.API/obj/Debug/netcoreapp2.0/TeamX.Security.API.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.API/obj/Debug/netcoreapp2.0/TeamX.Security.API.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/Debug/netcoreapp2.0/TeamX.Security.Client.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.Client/obj/Debug/netcoreapp2.0/TeamX.Security.Client.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio. 3 | ################################################################################ 4 | 5 | /.vs/TeamX.Security.Authentication/v15 6 | -------------------------------------------------------------------------------- /TeamX.Security.API/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "Debug": { 5 | "LogLevel": { 6 | "Default": "Warning" 7 | } 8 | }, 9 | "Console": { 10 | "LogLevel": { 11 | "Default": "Warning" 12 | } 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/obj/Debug/netcoreapp2.0/TeamX.Security.AuthServer.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.AuthServer/obj/Debug/netcoreapp2.0/TeamX.Security.AuthServer.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TeamX.Security.AuthServer.Models 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.MVCClient.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.MVCClient.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- 1 | body{padding-top:50px;padding-bottom:20px}.body-content{padding-left:15px;padding-right:15px}.carousel-caption p{font-size:20px;line-height:1.4}.carousel-inner .item img[src$=".svg"]{width:100%}#qrCode{margin:15px}@media screen and (max-width:767px){.carousel-caption{display:none}} -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeelBhatt/TeamX.Security.AuthenticationServer-IdentityServerv4-/HEAD/TeamX.Security.SimpleClient/obj/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /TeamX.Security.API/bin/Debug/netcoreapp2.0/TeamX.Security.API.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\E074368\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\E074368\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /TeamX.Security.API/bin/Debug/netcoreapp2.0/TeamX.Security.API.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TeamX.Security.Client/bin/Debug/netcoreapp2.0/TeamX.Security.Client.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\E074368\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\E074368\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/bin/Debug/netcoreapp2.0/TeamX.Security.AuthServer.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\E074368\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\E074368\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /TeamX.Security.AuthServer/bin/Debug/netcoreapp2.0/TeamX.Security.AuthServer.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.MVCClient.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\E074368\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\E074368\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.MVCClient.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\E074368\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\E074368\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /TeamX.Security.SimpleClient/bin/Debug/netcoreapp2.0/TeamX.Security.SimpleClient.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "2.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /TeamX.Security.Client/TeamX.Security.Client.csproj: -------------------------------------------------------------------------------- 1 |
12 | Request ID: @Model.RequestId
13 |
18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |
20 |21 | Development environment should not be enabled in deployed applications, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the ASPNETCORE_ENVIRONMENT environment variable to Development, and restarting the application. 22 |
23 | -------------------------------------------------------------------------------- /TeamX.Security.Client/obj/TeamX.Security.Client.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 |