├── .vs
├── AuthSystem
│ ├── FileContentIndex
│ │ ├── read.lock
│ │ ├── 39d2d850-9429-4856-b227-f39ad70b9c33.vsidx
│ │ ├── 45e4f6e1-aeb1-4222-83cf-eaadad886f21.vsidx
│ │ ├── 8b21a7c6-8f13-4075-84ad-701b407850e6.vsidx
│ │ └── c48a4a22-5164-4e41-be81-327a9a5dd1a0.vsidx
│ ├── v17
│ │ ├── .suo
│ │ └── .futdcache.v2
│ └── DesignTimeBuild
│ │ └── .dtbcache.v2
└── ProjectEvaluation
│ ├── authsystem.metadata.v5.2
│ └── authsystem.projects.v5.2
├── AuthSystem
├── obj
│ ├── Debug
│ │ └── net7.0
│ │ │ ├── AuthSystem.csproj.CopyComplete
│ │ │ ├── AuthSystem.csproj.BuildWithSkipAnalyzers
│ │ │ ├── AuthSystem.MvcApplicationPartsAssemblyInfo.cache
│ │ │ ├── AuthSystem.AssemblyInfoInputs.cache
│ │ │ ├── AuthSystem.RazorAssemblyInfo.cache
│ │ │ ├── AuthSystem.genruntimeconfig.cache
│ │ │ ├── AuthSystem.csproj.CoreCompileInputs.cache
│ │ │ ├── staticwebassets
│ │ │ ├── msbuild.build.AuthSystem.props
│ │ │ ├── msbuild.buildMultiTargeting.AuthSystem.props
│ │ │ └── msbuild.buildTransitive.AuthSystem.props
│ │ │ ├── apphost.exe
│ │ │ ├── AuthSystem.dll
│ │ │ ├── AuthSystem.pdb
│ │ │ ├── ref
│ │ │ └── AuthSystem.dll
│ │ │ ├── refint
│ │ │ └── AuthSystem.dll
│ │ │ ├── AuthSystem.assets.cache
│ │ │ ├── AuthSystem.csproj.AssemblyReference.cache
│ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs
│ │ │ ├── AuthSystem.MvcApplicationPartsAssemblyInfo.cs
│ │ │ ├── AuthSystem.RazorAssemblyInfo.cs
│ │ │ ├── AuthSystem.GlobalUsings.g.cs
│ │ │ ├── AuthSystem.AssemblyInfo.cs
│ │ │ ├── scopedcss
│ │ │ ├── Views
│ │ │ │ └── Shared
│ │ │ │ │ └── _Layout.cshtml.rz.scp.css
│ │ │ ├── bundle
│ │ │ │ └── AuthSystem.styles.css
│ │ │ └── projectbundle
│ │ │ │ └── AuthSystem.bundle.scp.css
│ │ │ └── AuthSystem.GeneratedMSBuildEditorConfig.editorconfig
│ ├── AuthSystem.csproj.nuget.g.targets
│ ├── AuthSystem.csproj.nuget.g.props
│ └── AuthSystem.csproj.nuget.dgspec.json
├── Views
│ ├── _ViewStart.cshtml
│ ├── _ViewImports.cshtml
│ ├── Home
│ │ ├── Privacy.cshtml
│ │ └── Index.cshtml
│ └── Shared
│ │ ├── _ValidationScriptsPartial.cshtml
│ │ ├── _LoginPartial.cshtml
│ │ ├── Error.cshtml
│ │ ├── _Layout.cshtml.css
│ │ └── _Layout.cshtml
├── Areas
│ └── Identity
│ │ ├── Pages
│ │ ├── Account
│ │ │ ├── _ViewImports.cshtml
│ │ │ ├── Login.cshtml
│ │ │ ├── Register.cshtml
│ │ │ ├── Login.cshtml.cs
│ │ │ └── Register.cshtml.cs
│ │ ├── _ViewStart.cshtml
│ │ ├── _ViewImports.cshtml
│ │ ├── _ValidationScriptsPartial.cshtml
│ │ └── _AuthLayout.cshtml
│ │ └── Data
│ │ ├── ApplicationUser.cs
│ │ └── AuthDbContext.cs
├── wwwroot
│ ├── favicon.ico
│ ├── js
│ │ └── site.js
│ ├── css
│ │ └── site.css
│ └── lib
│ │ ├── jquery
│ │ └── LICENSE.txt
│ │ ├── jquery-validation
│ │ └── LICENSE.md
│ │ ├── bootstrap
│ │ ├── LICENSE
│ │ └── dist
│ │ │ └── css
│ │ │ ├── bootstrap-reboot.min.css
│ │ │ ├── bootstrap-reboot.rtl.min.css
│ │ │ ├── bootstrap-reboot.rtl.css
│ │ │ └── bootstrap-reboot.css
│ │ └── jquery-validation-unobtrusive
│ │ ├── LICENSE.txt
│ │ └── jquery.validate.unobtrusive.min.js
├── appsettings.Development.json
├── bin
│ └── Debug
│ │ └── net7.0
│ │ ├── AuthSystem.dll
│ │ ├── AuthSystem.exe
│ │ ├── AuthSystem.pdb
│ │ ├── Azure.Core.dll
│ │ ├── Humanizer.dll
│ │ ├── NuGet.Common.dll
│ │ ├── Azure.Identity.dll
│ │ ├── Microsoft.Build.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── NuGet.Frameworks.dll
│ │ ├── NuGet.Packaging.dll
│ │ ├── NuGet.Protocol.dll
│ │ ├── NuGet.Versioning.dll
│ │ ├── System.CodeDom.dll
│ │ ├── appsettings.Development.json
│ │ ├── NuGet.LibraryModel.dll
│ │ ├── NuGet.ProjectModel.dll
│ │ ├── System.Memory.Data.dll
│ │ ├── Mono.TextTemplating.dll
│ │ ├── NuGet.Configuration.dll
│ │ ├── System.Drawing.Common.dll
│ │ ├── Microsoft.CodeAnalysis.dll
│ │ ├── Microsoft.DiaSymReader.dll
│ │ ├── System.Runtime.Caching.dll
│ │ ├── Microsoft.Build.Framework.dll
│ │ ├── Microsoft.Data.SqlClient.dll
│ │ ├── Microsoft.Identity.Client.dll
│ │ ├── Microsoft.NET.StringTools.dll
│ │ ├── Microsoft.SqlServer.Server.dll
│ │ ├── System.Composition.Hosting.dll
│ │ ├── System.Composition.Runtime.dll
│ │ ├── System.Windows.Extensions.dll
│ │ ├── Microsoft.CodeAnalysis.Elfie.dll
│ │ ├── Microsoft.CodeAnalysis.Razor.dll
│ │ ├── Microsoft.Extensions.Options.dll
│ │ ├── Microsoft.Win32.SystemEvents.dll
│ │ ├── System.Security.Permissions.dll
│ │ ├── Microsoft.Bcl.AsyncInterfaces.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.dll
│ │ ├── Microsoft.CodeAnalysis.Features.dll
│ │ ├── Microsoft.EntityFrameworkCore.dll
│ │ ├── Microsoft.IdentityModel.Logging.dll
│ │ ├── Microsoft.IdentityModel.Tokens.dll
│ │ ├── NuGet.DependencyResolver.Core.dll
│ │ ├── System.Composition.Convention.dll
│ │ ├── System.Composition.TypedParts.dll
│ │ ├── System.IdentityModel.Tokens.Jwt.dll
│ │ ├── Microsoft.AspNetCore.Identity.UI.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.dll
│ │ ├── Microsoft.IdentityModel.Protocols.dll
│ │ ├── Microsoft.AspNetCore.Razor.Language.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll
│ │ ├── Microsoft.DotNet.Scaffolding.Shared.dll
│ │ ├── Microsoft.EntityFrameworkCore.Design.dll
│ │ ├── Microsoft.Extensions.DependencyModel.dll
│ │ ├── Microsoft.Extensions.Identity.Core.dll
│ │ ├── Microsoft.Extensions.Identity.Stores.dll
│ │ ├── Microsoft.IdentityModel.Abstractions.dll
│ │ ├── System.Composition.AttributedModel.dll
│ │ ├── cs
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── de
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── dotnet-aspnet-codegenerator-design.dll
│ │ ├── es
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── fr
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── it
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── ja
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── ko
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── pl
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── ru
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── tr
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.dll
│ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll
│ │ ├── System.Reflection.MetadataLoadContext.dll
│ │ ├── pt-BR
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.AnalyzerUtilities.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.dll
│ │ ├── Microsoft.EntityFrameworkCore.Relational.dll
│ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll
│ │ ├── Microsoft.Identity.Client.Extensions.Msal.dll
│ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll
│ │ ├── System.Configuration.ConfigurationManager.dll
│ │ ├── zh-Hans
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── zh-Hant
│ │ ├── Microsoft.CodeAnalysis.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
│ │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
│ │ └── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
│ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.dll
│ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll
│ │ ├── Microsoft.Extensions.FileProviders.Embedded.dll
│ │ ├── System.Security.Cryptography.ProtectedData.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll
│ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
│ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
│ │ ├── runtimes
│ │ ├── unix
│ │ │ └── lib
│ │ │ │ ├── net6.0
│ │ │ │ └── System.Drawing.Common.dll
│ │ │ │ └── netcoreapp3.1
│ │ │ │ └── Microsoft.Data.SqlClient.dll
│ │ ├── win
│ │ │ └── lib
│ │ │ │ ├── net6.0
│ │ │ │ ├── System.Drawing.Common.dll
│ │ │ │ ├── System.Windows.Extensions.dll
│ │ │ │ ├── Microsoft.Win32.SystemEvents.dll
│ │ │ │ └── System.Security.Cryptography.ProtectedData.dll
│ │ │ │ ├── netcoreapp3.1
│ │ │ │ └── Microsoft.Data.SqlClient.dll
│ │ │ │ └── netstandard2.0
│ │ │ │ └── System.Runtime.Caching.dll
│ │ ├── win-arm
│ │ │ └── native
│ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ ├── win-x64
│ │ │ └── native
│ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ ├── win-x86
│ │ │ └── native
│ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ └── win-arm64
│ │ │ └── native
│ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
│ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
│ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
│ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
│ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
│ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
│ │ ├── appsettings.json
│ │ └── AuthSystem.runtimeconfig.json
├── ScaffoldingReadMe.txt
├── Properties
│ ├── serviceDependencies.json
│ ├── serviceDependencies.local.json
│ ├── serviceDependencies.local.json.user
│ └── launchSettings.json
├── Models
│ └── ErrorViewModel.cs
├── appsettings.json
├── AuthSystem.csproj.user
├── AuthSystem.csproj
├── Controllers
│ └── HomeController.cs
├── Program.cs
└── Migrations
│ └── 20230304102316_Initial Create.cs
├── .editorconfig
├── AuthSystem.sln
└── README.md
/.vs/AuthSystem/FileContentIndex/read.lock:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AuthSystem/obj/Debug/net7.0/AuthSystem.csproj.CopyComplete:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AuthSystem/obj/Debug/net7.0/AuthSystem.csproj.BuildWithSkipAnalyzers:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AuthSystem/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "_Layout";
3 | }
4 |
--------------------------------------------------------------------------------
/AuthSystem/obj/Debug/net7.0/AuthSystem.MvcApplicationPartsAssemblyInfo.cache:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AuthSystem/Areas/Identity/Pages/Account/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @using AuthSystem.Areas.Identity.Pages.Account
--------------------------------------------------------------------------------
/AuthSystem/obj/Debug/net7.0/AuthSystem.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | f935e7086afbae3f3b552cb110f8dffded4829f5
2 |
--------------------------------------------------------------------------------
/AuthSystem/obj/Debug/net7.0/AuthSystem.RazorAssemblyInfo.cache:
--------------------------------------------------------------------------------
1 | 5860763757f4f08c7ebdea1b3a94a18109f17861
2 |
--------------------------------------------------------------------------------
/AuthSystem/obj/Debug/net7.0/AuthSystem.genruntimeconfig.cache:
--------------------------------------------------------------------------------
1 | e0e4518e2dbaa90e9b6c4dcc1dbbcb527a0d250d
2 |
--------------------------------------------------------------------------------
/AuthSystem/Areas/Identity/Pages/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 |
2 | @{
3 | Layout = "/Views/Shared/_Layout.cshtml";
4 | }
5 |
--------------------------------------------------------------------------------
/AuthSystem/obj/Debug/net7.0/AuthSystem.csproj.CoreCompileInputs.cache:
--------------------------------------------------------------------------------
1 | 54de87cb30a82d5cc77cc49b6a61efd419506431
2 |
--------------------------------------------------------------------------------
/AuthSystem/Views/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @using AuthSystem
2 | @using AuthSystem.Models
3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
4 |
--------------------------------------------------------------------------------
/.vs/AuthSystem/v17/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/.vs/AuthSystem/v17/.suo
--------------------------------------------------------------------------------
/AuthSystem/obj/Debug/net7.0/staticwebassets/msbuild.build.AuthSystem.props:
--------------------------------------------------------------------------------
1 |
Use this page to detail your site's privacy policy.
7 | -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/AuthSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/AuthSystem.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/AuthSystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/AuthSystem.exe -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/AuthSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/AuthSystem.pdb -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Azure.Core.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Humanizer.dll -------------------------------------------------------------------------------- /AuthSystem/obj/Debug/net7.0/AuthSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/obj/Debug/net7.0/AuthSystem.dll -------------------------------------------------------------------------------- /AuthSystem/obj/Debug/net7.0/AuthSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/obj/Debug/net7.0/AuthSystem.pdb -------------------------------------------------------------------------------- /AuthSystem/ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- 1 | Support for ASP.NET Core Identity was added to your project. 2 | 3 | For setup and configuration information, see https://go.microsoft.com/fwlink/?linkid=2116645. 4 | -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.Common.dll -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/authsystem.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/.vs/ProjectEvaluation/authsystem.metadata.v5.2 -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/authsystem.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/.vs/ProjectEvaluation/authsystem.projects.v5.2 -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Azure.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Azure.Identity.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Build.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Build.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.Packaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.Packaging.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.Protocol.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.Versioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.Versioning.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.CodeDom.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /AuthSystem/obj/Debug/net7.0/ref/AuthSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/obj/Debug/net7.0/ref/AuthSystem.dll -------------------------------------------------------------------------------- /AuthSystem/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "mssql1": { 4 | "type": "mssql", 5 | "connectionId": "ConnectionStrings:AuthDbContextConnection" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.LibraryModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.LibraryModel.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.ProjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.ProjectModel.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Memory.Data.dll -------------------------------------------------------------------------------- /AuthSystem/obj/Debug/net7.0/refint/AuthSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/obj/Debug/net7.0/refint/AuthSystem.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.Configuration.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /AuthSystem/obj/Debug/net7.0/AuthSystem.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/obj/Debug/net7.0/AuthSystem.assets.cache -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.DiaSymReader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.DiaSymReader.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /AuthSystem/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "mssql1": { 4 | "type": "mssql.local", 5 | "connectionId": "ConnectionStrings:AuthDbContextConnection" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.NET.StringTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.NET.StringTools.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Elfie.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Elfie.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /AuthSystem/Properties/serviceDependencies.local.json.user: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "mssql1": { 4 | "restored": true, 5 | "restoreTime": "2023-03-02T05:32:56.7491769Z" 6 | } 7 | }, 8 | "parameters": {} 9 | } -------------------------------------------------------------------------------- /AuthSystem/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Features.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/NuGet.DependencyResolver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/NuGet.DependencyResolver.Core.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Identity.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Identity.UI.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Reflection.MetadataLoadContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Reflection.MetadataLoadContext.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/obj/Debug/net7.0/AuthSystem.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/obj/Debug/net7.0/AuthSystem.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /.vs/AuthSystem/FileContentIndex/39d2d850-9429-4856-b227-f39ad70b9c33.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/.vs/AuthSystem/FileContentIndex/39d2d850-9429-4856-b227-f39ad70b9c33.vsidx -------------------------------------------------------------------------------- /.vs/AuthSystem/FileContentIndex/45e4f6e1-aeb1-4222-83cf-eaadad886f21.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/.vs/AuthSystem/FileContentIndex/45e4f6e1-aeb1-4222-83cf-eaadad886f21.vsidx -------------------------------------------------------------------------------- /.vs/AuthSystem/FileContentIndex/8b21a7c6-8f13-4075-84ad-701b407850e6.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/.vs/AuthSystem/FileContentIndex/8b21a7c6-8f13-4075-84ad-701b407850e6.vsidx -------------------------------------------------------------------------------- /.vs/AuthSystem/FileContentIndex/c48a4a22-5164-4e41-be81-327a9a5dd1a0.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/.vs/AuthSystem/FileContentIndex/c48a4a22-5164-4e41-be81-327a9a5dd1a0.vsidx -------------------------------------------------------------------------------- /AuthSystem/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace AuthSystem.Models 2 | { 3 | public class ErrorViewModel 4 | { 5 | public string? RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | } -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Embedded.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Embedded.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /AuthSystem/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Identity 2 | @using AuthSystem.Areas.Identity 3 | @using AuthSystem.Areas.Identity.Pages 4 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 5 | @using AuthSystem.Areas.Identity.Data 6 | -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-MVC-Identity---Complete-User-Authentication-System/HEAD/AuthSystem/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /AuthSystem/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | //Learn about building Web apps with ASP.NET Core.
8 |User Id : @ViewData["UserID"]
9 |
12 | Request ID: @Model.RequestId
13 |
18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |
20 |21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |
26 | -------------------------------------------------------------------------------- /AuthSystem/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | 5 | @media (min-width: 768px) { 6 | html { 7 | font-size: 16px; 8 | } 9 | } 10 | 11 | .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { 12 | box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; 13 | } 14 | 15 | html { 16 | position: relative; 17 | min-height: 100%; 18 | } 19 | 20 | body { 21 | margin-bottom: 60px; 22 | font-family:Roboto,sans-serif; 23 | } 24 | 25 | /*tab navigation*/ 26 | .login-logout-card .card-header { 27 | padding: 0px 0px 12px 0px; 28 | } 29 | 30 | .login-logout-card ul.nav-tabs { 31 | margin: 0px 0px -12px 0px; 32 | } 33 | 34 | .login-logout-card li.nav-item { 35 | width: 50%; 36 | } 37 | 38 | .login-logout-card a.nav-link { 39 | font-size: 1rem; 40 | color: #495057; 41 | text-align: center; 42 | padding: 1rem; 43 | } 44 | 45 | .login-logout-card .card-body { 46 | padding: 10px 20px; 47 | } -------------------------------------------------------------------------------- /AuthSystem/obj/AuthSystem.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 |
24 |
25 |
26 | | :bar_chart: | List of Tutorials | | :moneybag: | Support Us |
27 | |--------------------------:|:---------------------|---|---------------------:|:-------------------------------------|
28 | | Angular |http://bit.ly/2KQN9xF | |Paypal | https://goo.gl/bPcyXW |
29 | | Asp.Net Core |http://bit.ly/30fPDMg | |Amazon Affiliate | https://geni.us/JDzpE |
30 | | React |http://bit.ly/325temF | |
31 | | Python |http://bit.ly/2ws4utg | | :point_right: | Follow Us |
32 | | Node.js |https://goo.gl/viJcFs | |Website |http://www.codaffection.com |
33 | | Asp.Net MVC |https://goo.gl/gvjUJ7 | |YouTube |https://www.youtube.com/codaffection |
34 | | Flutter |https://bit.ly/3ggmmJz| |Facebook |https://www.facebook.com/codaffection |
35 | | Web API |https://goo.gl/itVayJ | |Twitter |https://twitter.com/CodAffection |
36 | | MEAN Stack |https://goo.gl/YJPPAH | |
37 | | C# Tutorial |https://goo.gl/s1zJxo | |
38 | | Asp.Net WebForm |https://goo.gl/GXC2aJ | |
39 | | C# WinForm |https://goo.gl/vHS9Hd | |
40 | | MS SQL |https://goo.gl/MLYS9e | |
41 | | Crystal Report |https://goo.gl/5Vou7t | |
42 | | CG Exercises in C Program |https://goo.gl/qEWJCs | |
43 |
--------------------------------------------------------------------------------
/AuthSystem/obj/AuthSystem.csproj.nuget.g.props:
--------------------------------------------------------------------------------
1 |
2 |