├── .dockerignore ├── .vs ├── DotNetCore_Jwt-master │ └── v16 │ │ └── .suo ├── DotNetJwt │ ├── DesignTimeBuild │ │ └── .dtbcache │ ├── config │ │ └── applicationhost.config │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── DotNetJwt.sln ├── Jwt_Policy_Demo ├── AuthMiddler │ ├── PolicyHandler.cs │ └── PolicyRequirement.cs ├── Const.cs ├── Controllers │ ├── AuthController.cs │ └── ValuesController.cs ├── Dockerfile ├── Jwt_Policy_Demo.csproj ├── Jwt_Policy_Demo.csproj.user ├── Jwt_Policy_Demo.xml ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.0 │ │ ├── Dockerfile │ │ ├── Jwt_Policy_Demo.deps.json │ │ ├── Jwt_Policy_Demo.dll │ │ ├── Jwt_Policy_Demo.exe │ │ ├── Jwt_Policy_Demo.pdb │ │ ├── Jwt_Policy_Demo.runtimeconfig.dev.json │ │ ├── Jwt_Policy_Demo.runtimeconfig.json │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── publish │ │ ├── Jwt_Policy_Demo.deps.json │ │ ├── Jwt_Policy_Demo.dll │ │ ├── Jwt_Policy_Demo.exe │ │ ├── Jwt_Policy_Demo.pdb │ │ ├── Jwt_Policy_Demo.runtimeconfig.json │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ ├── es │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── tr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── web.config │ │ ├── zh-Hans │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll └── obj │ ├── Debug │ └── netcoreapp3.0 │ │ ├── Jwt_Policy_Demo.AssemblyInfo.cs │ │ ├── Jwt_Policy_Demo.AssemblyInfoInputs.cache │ │ ├── Jwt_Policy_Demo.MvcApplicationPartsAssemblyInfo.cache │ │ ├── Jwt_Policy_Demo.MvcApplicationPartsAssemblyInfo.cs │ │ ├── Jwt_Policy_Demo.RazorTargetAssemblyInfo.cache │ │ ├── Jwt_Policy_Demo.assets.cache │ │ ├── Jwt_Policy_Demo.csproj.CopyComplete │ │ ├── Jwt_Policy_Demo.csproj.FileListAbsolute.txt │ │ ├── Jwt_Policy_Demo.dll │ │ ├── Jwt_Policy_Demo.exe │ │ ├── Jwt_Policy_Demo.pdb │ │ └── staticwebassets │ │ ├── Jwt_Policy_Demo.StaticWebAssets.Manifest.cache │ │ └── Jwt_Policy_Demo.StaticWebAssets.xml │ ├── Jwt_Policy_Demo.csproj.nuget.cache │ ├── Jwt_Policy_Demo.csproj.nuget.dgspec.json │ ├── Jwt_Policy_Demo.csproj.nuget.g.props │ ├── Jwt_Policy_Demo.csproj.nuget.g.targets │ └── project.assets.json ├── README.md └── src ├── Identity.Cookie └── DotNetCore_Cookie_Sample │ ├── ConfigureMyCookie.cs │ ├── Controllers │ ├── HomeController.cs │ └── LoginOrSignOutController.cs │ ├── DotNetCore_Cookie_Sample.csproj │ ├── DotNetCore_Cookie_Sample.csproj.user │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ ├── MyClaims.cshtml │ │ └── Privacy.cshtml │ ├── LoginOrSignOut │ │ ├── Index.cshtml │ │ └── Logout.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── netcoreapp3.0 │ │ ├── DotNetCore_Cookie_Sample.Views.dll │ │ ├── DotNetCore_Cookie_Sample.Views.pdb │ │ ├── DotNetCore_Cookie_Sample.deps.json │ │ ├── DotNetCore_Cookie_Sample.dll │ │ ├── DotNetCore_Cookie_Sample.exe │ │ ├── DotNetCore_Cookie_Sample.pdb │ │ ├── DotNetCore_Cookie_Sample.runtimeconfig.dev.json │ │ ├── DotNetCore_Cookie_Sample.runtimeconfig.json │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── obj │ ├── Debug │ │ └── netcoreapp3.0 │ │ │ ├── DotNetCore_Cookie_Sample.AssemblyInfo.cs │ │ │ ├── DotNetCore_Cookie_Sample.AssemblyInfoInputs.cache │ │ │ ├── DotNetCore_Cookie_Sample.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── DotNetCore_Cookie_Sample.RazorAssemblyInfo.cache │ │ │ ├── DotNetCore_Cookie_Sample.RazorAssemblyInfo.cs │ │ │ ├── DotNetCore_Cookie_Sample.RazorCoreGenerate.cache │ │ │ ├── DotNetCore_Cookie_Sample.RazorTargetAssemblyInfo.cache │ │ │ ├── DotNetCore_Cookie_Sample.RazorTargetAssemblyInfo.cs │ │ │ ├── DotNetCore_Cookie_Sample.TagHelpers.input.cache │ │ │ ├── DotNetCore_Cookie_Sample.TagHelpers.output.cache │ │ │ ├── DotNetCore_Cookie_Sample.Views.dll │ │ │ ├── DotNetCore_Cookie_Sample.Views.pdb │ │ │ ├── DotNetCore_Cookie_Sample.assets.cache │ │ │ ├── DotNetCore_Cookie_Sample.csproj.CopyComplete │ │ │ ├── DotNetCore_Cookie_Sample.csproj.FileListAbsolute.txt │ │ │ ├── DotNetCore_Cookie_Sample.csprojAssemblyReference.cache │ │ │ ├── DotNetCore_Cookie_Sample.dll │ │ │ ├── DotNetCore_Cookie_Sample.exe │ │ │ ├── DotNetCore_Cookie_Sample.pdb │ │ │ ├── Razor │ │ │ └── Views │ │ │ │ ├── Home │ │ │ │ ├── Index.cshtml.g.cs │ │ │ │ ├── MyClaims.cshtml.g.cs │ │ │ │ └── Privacy.cshtml.g.cs │ │ │ │ ├── LoginOrSignOut │ │ │ │ ├── Index.cshtml.g.cs │ │ │ │ └── Logout.cshtml.g.cs │ │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml.g.cs │ │ │ │ ├── _Layout.cshtml.g.cs │ │ │ │ └── _ValidationScriptsPartial.cshtml.g.cs │ │ │ │ ├── _ViewImports.cshtml.g.cs │ │ │ │ └── _ViewStart.cshtml.g.cs │ │ │ └── staticwebassets │ │ │ ├── DotNetCore_Cookie_Sample.StaticWebAssets.Manifest.cache │ │ │ └── DotNetCore_Cookie_Sample.StaticWebAssets.xml │ ├── DotNetCore_Cookie_Sample.csproj.nuget.cache │ ├── DotNetCore_Cookie_Sample.csproj.nuget.dgspec.json │ ├── DotNetCore_Cookie_Sample.csproj.nuget.g.props │ ├── DotNetCore_Cookie_Sample.csproj.nuget.g.targets │ └── project.assets.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Server&Client ├── DotNetCore_Jwt_Client │ ├── .vs │ │ └── DotNetCore_Jwt_Client │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache │ │ │ └── v16 │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ ├── Auth_Center │ │ ├── AuthMiddleware.cs │ │ └── IdentityService.cs │ ├── Controllers │ │ └── ValuesController.cs │ ├── DotNetCore_Jwt_Client.csproj │ ├── DotNetCore_Jwt_Client.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Settings │ │ └── JwtSetting.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.0 │ │ │ ├── DotNetCore_Jwt_Client.deps.json │ │ │ ├── DotNetCore_Jwt_Client.dll │ │ │ ├── DotNetCore_Jwt_Client.exe │ │ │ ├── DotNetCore_Jwt_Client.pdb │ │ │ ├── DotNetCore_Jwt_Client.runtimeconfig.dev.json │ │ │ ├── DotNetCore_Jwt_Client.runtimeconfig.json │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── System.Composition.AttributedModel.dll │ │ │ ├── System.Composition.Convention.dll │ │ │ ├── System.Composition.Hosting.dll │ │ │ ├── System.Composition.Runtime.dll │ │ │ ├── System.Composition.TypedParts.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── cs │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ │ ├── es │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── tr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ └── obj │ │ ├── Debug │ │ ├── netcoreapp2.1 │ │ │ ├── DotNetCore_Jwt_Client.AssemblyInfo.cs │ │ │ ├── DotNetCore_Jwt_Client.AssemblyInfoInputs.cache │ │ │ ├── DotNetCore_Jwt_Client.assets.cache │ │ │ ├── DotNetCore_Jwt_Client.csproj.FileListAbsolute.txt │ │ │ └── DotNetCore_Jwt_Client.csprojAssemblyReference.cache │ │ └── netcoreapp3.0 │ │ │ ├── DotNetCore_Jwt_Client.AssemblyInfo.cs │ │ │ ├── DotNetCore_Jwt_Client.AssemblyInfoInputs.cache │ │ │ ├── DotNetCore_Jwt_Client.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── DotNetCore_Jwt_Client.RazorTargetAssemblyInfo.cache │ │ │ ├── DotNetCore_Jwt_Client.assets.cache │ │ │ ├── DotNetCore_Jwt_Client.csproj.CopyComplete │ │ │ ├── DotNetCore_Jwt_Client.csproj.FileListAbsolute.txt │ │ │ ├── DotNetCore_Jwt_Client.csprojAssemblyReference.cache │ │ │ ├── DotNetCore_Jwt_Client.dll │ │ │ ├── DotNetCore_Jwt_Client.exe │ │ │ ├── DotNetCore_Jwt_Client.pdb │ │ │ └── staticwebassets │ │ │ ├── DotNetCore_Jwt_Client.StaticWebAssets.Manifest.cache │ │ │ └── DotNetCore_Jwt_Client.StaticWebAssets.xml │ │ ├── DotNetCore_Jwt_Client.csproj.nuget.cache │ │ ├── DotNetCore_Jwt_Client.csproj.nuget.dgspec.json │ │ ├── DotNetCore_Jwt_Client.csproj.nuget.g.props │ │ ├── DotNetCore_Jwt_Client.csproj.nuget.g.targets │ │ ├── Release │ │ └── netcoreapp3.0 │ │ │ ├── DotNetCore_Jwt_Client.AssemblyInfo.cs │ │ │ ├── DotNetCore_Jwt_Client.AssemblyInfoInputs.cache │ │ │ └── DotNetCore_Jwt_Client.assets.cache │ │ └── project.assets.json └── DotNetCore_Jwt_Server │ ├── Controllers │ └── ValuesController.cs │ ├── DotNetCore_Jwt_Server.csproj │ ├── DotNetCore_Jwt_Server.csproj.user │ ├── Models │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── TokenService.cs │ └── UserService.cs │ ├── Settings │ └── JwtSetting.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── netcoreapp3.0 │ │ ├── DotNetCore_Jwt_Server.deps.json │ │ ├── DotNetCore_Jwt_Server.dll │ │ ├── DotNetCore_Jwt_Server.exe │ │ ├── DotNetCore_Jwt_Server.pdb │ │ ├── DotNetCore_Jwt_Server.runtimeconfig.dev.json │ │ ├── DotNetCore_Jwt_Server.runtimeconfig.json │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ └── obj │ ├── Debug │ ├── netcoreapp2.1 │ │ ├── DotNetCore_Jwt_Server.AssemblyInfo.cs │ │ ├── DotNetCore_Jwt_Server.AssemblyInfoInputs.cache │ │ ├── DotNetCore_Jwt_Server.assets.cache │ │ ├── DotNetCore_Jwt_Server.csproj.FileListAbsolute.txt │ │ └── DotNetCore_Jwt_Server.csprojAssemblyReference.cache │ ├── netcoreapp3.0 │ │ ├── DotNetCore_Jwt_Server.AssemblyInfo.cs │ │ ├── DotNetCore_Jwt_Server.AssemblyInfoInputs.cache │ │ ├── DotNetCore_Jwt_Server.MvcApplicationPartsAssemblyInfo.cache │ │ ├── DotNetCore_Jwt_Server.RazorTargetAssemblyInfo.cache │ │ ├── DotNetCore_Jwt_Server.assets.cache │ │ ├── DotNetCore_Jwt_Server.csproj.CopyComplete │ │ ├── DotNetCore_Jwt_Server.csproj.FileListAbsolute.txt │ │ ├── DotNetCore_Jwt_Server.csprojAssemblyReference.cache │ │ ├── DotNetCore_Jwt_Server.dll │ │ ├── DotNetCore_Jwt_Server.exe │ │ ├── DotNetCore_Jwt_Server.pdb │ │ └── staticwebassets │ │ │ ├── DotNetCore_Jwt_Server.StaticWebAssets.Manifest.cache │ │ │ └── DotNetCore_Jwt_Server.StaticWebAssets.xml │ └── netcoreapp3.1 │ │ ├── DotNetCore_Jwt_Server.AssemblyInfo.cs │ │ ├── DotNetCore_Jwt_Server.AssemblyInfoInputs.cache │ │ └── DotNetCore_Jwt_Server.assets.cache │ ├── DotNetCore_Jwt_Server.csproj.nuget.cache │ ├── DotNetCore_Jwt_Server.csproj.nuget.dgspec.json │ ├── DotNetCore_Jwt_Server.csproj.nuget.g.props │ ├── DotNetCore_Jwt_Server.csproj.nuget.g.targets │ ├── Release │ └── netcoreapp3.0 │ │ ├── DotNetCore_Jwt_Server.AssemblyInfo.cs │ │ ├── DotNetCore_Jwt_Server.AssemblyInfoInputs.cache │ │ └── DotNetCore_Jwt_Server.assets.cache │ └── project.assets.json └── Verify&yourself └── NetCore.Jwt.Token ├── .vs ├── NetCore.Jwt.Token │ ├── DesignTimeBuild │ │ └── .dtbcache │ ├── config │ │ └── applicationhost.config │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide └── config │ └── applicationhost.config ├── NetCore.Jwt.Token.sln └── NetCore.Jwt.Token ├── Controllers ├── AuthController.cs └── ValuesController.cs ├── Core └── JwtSettings.cs ├── Models ├── ResponseResult.cs └── TokenResponseResult.cs ├── NetCore.Jwt.Token.csproj ├── NetCore.Jwt.Token.csproj.user ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ ├── netcoreapp2.1 │ ├── NetCore.Jwt.Token.deps.json │ ├── NetCore.Jwt.Token.dll │ ├── NetCore.Jwt.Token.pdb │ ├── NetCore.Jwt.Token.runtimeconfig.dev.json │ ├── NetCore.Jwt.Token.runtimeconfig.json │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json │ ├── netcoreapp2.2 │ ├── NetCore.Jwt.Token.deps.json │ ├── NetCore.Jwt.Token.dll │ ├── NetCore.Jwt.Token.pdb │ ├── NetCore.Jwt.Token.runtimeconfig.dev.json │ ├── NetCore.Jwt.Token.runtimeconfig.json │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json │ └── netcoreapp3.0 │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Razor.dll │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ ├── NetCore.Jwt.Token.deps.json │ ├── NetCore.Jwt.Token.dll │ ├── NetCore.Jwt.Token.exe │ ├── NetCore.Jwt.Token.pdb │ ├── NetCore.Jwt.Token.runtimeconfig.dev.json │ ├── NetCore.Jwt.Token.runtimeconfig.json │ ├── Newtonsoft.Json.dll │ ├── NuGet.Frameworks.dll │ ├── Properties │ └── launchSettings.json │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── dotnet-aspnet-codegenerator-design.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll └── obj ├── Debug ├── netcoreapp2.1 │ ├── NetCore.Jwt.Token.AssemblyInfo.cs │ ├── NetCore.Jwt.Token.AssemblyInfoInputs.cache │ ├── NetCore.Jwt.Token.RazorAssemblyInfo.cache │ ├── NetCore.Jwt.Token.RazorAssemblyInfo.cs │ ├── NetCore.Jwt.Token.RazorTargetAssemblyInfo.cache │ ├── NetCore.Jwt.Token.assets.cache │ ├── NetCore.Jwt.Token.csproj.FileListAbsolute.txt │ ├── NetCore.Jwt.Token.csprojAssemblyReference.cache │ ├── NetCore.Jwt.Token.dll │ └── NetCore.Jwt.Token.pdb ├── netcoreapp2.2 │ ├── NetCore.Jwt.Token.AssemblyInfo.cs │ ├── NetCore.Jwt.Token.AssemblyInfoInputs.cache │ ├── NetCore.Jwt.Token.RazorAssemblyInfo.cache │ ├── NetCore.Jwt.Token.RazorAssemblyInfo.cs │ ├── NetCore.Jwt.Token.RazorTargetAssemblyInfo.cache │ ├── NetCore.Jwt.Token.assets.cache │ ├── NetCore.Jwt.Token.csproj.CoreCompileInputs.cache │ ├── NetCore.Jwt.Token.csproj.FileListAbsolute.txt │ ├── NetCore.Jwt.Token.csprojAssemblyReference.cache │ ├── NetCore.Jwt.Token.dll │ ├── NetCore.Jwt.Token.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── netcoreapp3.0 │ ├── NetCore.Jwt.Token.AssemblyInfo.cs │ ├── NetCore.Jwt.Token.AssemblyInfoInputs.cache │ ├── NetCore.Jwt.Token.MvcApplicationPartsAssemblyInfo.cache │ ├── NetCore.Jwt.Token.RazorTargetAssemblyInfo.cache │ ├── NetCore.Jwt.Token.assets.cache │ ├── NetCore.Jwt.Token.csproj.CopyComplete │ ├── NetCore.Jwt.Token.csproj.FileListAbsolute.txt │ ├── NetCore.Jwt.Token.csprojAssemblyReference.cache │ ├── NetCore.Jwt.Token.dll │ ├── NetCore.Jwt.Token.exe │ └── NetCore.Jwt.Token.pdb ├── NetCore.Jwt.Token.csproj.nuget.cache ├── NetCore.Jwt.Token.csproj.nuget.dgspec.json ├── NetCore.Jwt.Token.csproj.nuget.g.props ├── NetCore.Jwt.Token.csproj.nuget.g.targets ├── Release └── netcoreapp3.0 │ ├── NetCore.Jwt.Token.AssemblyInfo.cs │ ├── NetCore.Jwt.Token.AssemblyInfoInputs.cache │ └── NetCore.Jwt.Token.assets.cache └── project.assets.json /.vs/DotNetCore_Jwt-master/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/.vs/DotNetCore_Jwt-master/v16/.suo -------------------------------------------------------------------------------- /.vs/DotNetJwt/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/.vs/DotNetJwt/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/DotNetJwt/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/.vs/DotNetJwt/v16/.suo -------------------------------------------------------------------------------- /.vs/DotNetJwt/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/.vs/DotNetJwt/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/DotNetJwt/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/.vs/DotNetJwt/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [ 3 | "", 4 | "\\src" 5 | ], 6 | "PreviewInSolutionExplorer": false 7 | } -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Jwt_Policy_Demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/Dockerfile -------------------------------------------------------------------------------- /Jwt_Policy_Demo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/Startup.cs -------------------------------------------------------------------------------- /Jwt_Policy_Demo/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Jwt_Policy_Demo/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Dockerfile -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Jwt_Policy_Demo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Jwt_Policy_Demo.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Jwt_Policy_Demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Jwt_Policy_Demo.exe -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Jwt_Policy_Demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Jwt_Policy_Demo.pdb -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Jwt_Policy_Demo.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\haozi zhang\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\haozi zhang\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Jwt_Policy_Demo.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.0", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "3.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Jwt_Policy_Demo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Jwt_Policy_Demo.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Jwt_Policy_Demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Jwt_Policy_Demo.exe -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Jwt_Policy_Demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Jwt_Policy_Demo.pdb -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.Convention.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/publish/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4ff52bea19a2eef4fde97e6fe503c6a41fb2cc6d 2 | -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 96bee9eca508276540d37f7af54f503dc11ed1cb 2 | -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.assets.cache -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.csproj.CopyComplete -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.dll -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.exe -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/Jwt_Policy_Demo.pdb -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/staticwebassets/Jwt_Policy_Demo.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/staticwebassets/Jwt_Policy_Demo.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Debug/netcoreapp3.0/staticwebassets/Jwt_Policy_Demo.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Jwt_Policy_Demo/obj/Jwt_Policy_Demo.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "kls5QJQEIjB29cNd1+PIIAvaihJ/yl+ukan99Am+333HQsi1jVOeHw0e0EJwB7iDvDRIgUqHn0vLjI0G8ussJQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## ASP.NET CORE JWT 简单Demo 提供 2 | 3 | # Server & Client 4 | > 在Src中,其中非常的简单,这个一般要使用认证服务器 5 | # MySelf Auth 6 | > 这个模式将会自己验证自己 7 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace DotNetCore_Cookie_Sample.Models 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 |
6 |

Welcome

7 |

Learn about building Web apps with ASP.NET Core.

8 |
9 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

Use this page to detail your site's privacy policy.

7 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/Views/LoginOrSignOut/Logout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | @{ 3 | ViewData["Title"] = "Logout"; 4 | } 5 | 6 |

Logout OK!

7 | 8 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using DotNetCore_Cookie_Sample 2 | @using DotNetCore_Cookie_Sample.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.Views.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.Views.pdb -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.exe -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.pdb -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\haozi zhang\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\haozi zhang\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | abbb853f7058393f7d5bcb5928df163052734b19 2 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | efd55498f4dc6e0b46fe457b1b42179098972311 2 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | 28e9bec64a34b0674ed6ce521b3b34496093803c 2 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | b8a06585ecfb6c30ee08f0afea6e25473e6fd2b0 2 | -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.TagHelpers.input.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.TagHelpers.input.cache -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.Views.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.Views.pdb -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.assets.cache -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.dll -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.exe -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/DotNetCore_Cookie_Sample.pdb -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/Debug/netcoreapp3.0/staticwebassets/DotNetCore_Cookie_Sample.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/obj/DotNetCore_Cookie_Sample.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "WkMi50RGwzc0hSIZ4AvwW7pKWtNLIsoAioBYgD0zH1ZU9bbdr3D10/mhRQVwB2izpfqpnK6X/1QeLv1TL+w/Jw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Identity.Cookie/DotNetCore_Cookie_Sample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Identity.Cookie/DotNetCore_Cookie_Sample/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 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/.vs/DotNetCore_Jwt_Client/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/.vs/DotNetCore_Jwt_Client/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/.vs/DotNetCore_Jwt_Client/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/.vs/DotNetCore_Jwt_Client/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/.vs/DotNetCore_Jwt_Client/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/.vs/DotNetCore_Jwt_Client/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/Startup.cs -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/appsettings.json -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.exe -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.pdb -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/appsettings.json -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 888bc54eb23f4bf697df9e9a5985734c0abf9f87 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Client.assets.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Client.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Client.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 888bc54eb23f4bf697df9e9a5985734c0abf9f87 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 3cf36fcdb1023e45a9bdf70ca317df8b41dd6f96 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.assets.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.exe -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Client.pdb -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Debug/netcoreapp3.0/staticwebassets/DotNetCore_Jwt_Client.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/DotNetCore_Jwt_Client.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "LGT1kEP8gJywM5VEZC/y2R4J3oLPSyOOua9s8BmpCg7PbSEsBcp0bA8kKGlS/eqwy9Ohycx2F3Th72bESt2Hbw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Release/netcoreapp3.0/DotNetCore_Jwt_Client.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dd594c9da05a8bee8155918efcc9a16b2c5bfe66 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Client/obj/Release/netcoreapp3.0/DotNetCore_Jwt_Client.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Client/obj/Release/netcoreapp3.0/DotNetCore_Jwt_Client.assets.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/appsettings.json -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.exe -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.pdb -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/appsettings.json -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/bin/Debug/netcoreapp3.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Server.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ce2a52d2fcc21e39ec8e6c5027b5b548c72ce79b 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Server.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Server.assets.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Server.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp2.1/DotNetCore_Jwt_Server.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ce2a52d2fcc21e39ec8e6c5027b5b548c72ce79b 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 1abc6d81d6ee8a4c1cf942dd8d1506e03a34fc9d 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.assets.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.dll -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.exe -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/DotNetCore_Jwt_Server.pdb -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.0/staticwebassets/DotNetCore_Jwt_Server.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.1/DotNetCore_Jwt_Server.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ce2a52d2fcc21e39ec8e6c5027b5b548c72ce79b 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.1/DotNetCore_Jwt_Server.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Debug/netcoreapp3.1/DotNetCore_Jwt_Server.assets.cache -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/DotNetCore_Jwt_Server.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "uvWMnVwtqBekdY08vzfEDmSsq/zB8NqrWH6wEsn+UlJKvfpgySNbkWbAFZeK1HwD835jqp5KSUSn4oKfdUHewQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Release/netcoreapp3.0/DotNetCore_Jwt_Server.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ee3ba74deb69483ceef391eb276c55ee582f5d4e 2 | -------------------------------------------------------------------------------- /src/Server&Client/DotNetCore_Jwt_Server/obj/Release/netcoreapp3.0/DotNetCore_Jwt_Server.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Server&Client/DotNetCore_Jwt_Server/obj/Release/netcoreapp3.0/DotNetCore_Jwt_Server.assets.cache -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v15/.suo -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v16/.suo -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/.vs/NetCore.Jwt.Token/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*" 8 | } 9 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.1/NetCore.Jwt.Token.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.1/NetCore.Jwt.Token.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.1/NetCore.Jwt.Token.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.1/NetCore.Jwt.Token.pdb -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.1/NetCore.Jwt.Token.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\haozi zhang\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\haozi zhang\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*" 8 | } 9 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.2/NetCore.Jwt.Token.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.2/NetCore.Jwt.Token.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.2/NetCore.Jwt.Token.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.2/NetCore.Jwt.Token.pdb -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.2/NetCore.Jwt.Token.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\haozi zhang\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\haozi zhang\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp2.2/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*" 8 | } 9 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NetCore.Jwt.Token.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NetCore.Jwt.Token.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NetCore.Jwt.Token.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NetCore.Jwt.Token.exe -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NetCore.Jwt.Token.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NetCore.Jwt.Token.pdb -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NetCore.Jwt.Token.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\haozi zhang\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\haozi zhang\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*" 8 | } 9 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/bin/Debug/netcoreapp3.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f1d12a60f1c225a0076d4ae9fc45e042fcbe2fda 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 254f85597863f67c894e2de176fb422324fe4025 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | fcc86ce74fd5df610a45854a34e7de6026f9e3be 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.assets.cache -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.1/NetCore.Jwt.Token.pdb -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f1d12a60f1c225a0076d4ae9fc45e042fcbe2fda 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 254f85597863f67c894e2de176fb422324fe4025 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | fcc86ce74fd5df610a45854a34e7de6026f9e3be 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.assets.cache -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 754db155df0a7d85ed88cc7690a4d9cbe3140caa 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp2.2/NetCore.Jwt.Token.pdb -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f1d12a60f1c225a0076d4ae9fc45e042fcbe2fda 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 00ecb1edcb8ad3e1629c9ec53e25e9735bc19a1f 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.assets.cache -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.csproj.CopyComplete -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.dll -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.exe -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Debug/netcoreapp3.0/NetCore.Jwt.Token.pdb -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/NetCore.Jwt.Token.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "riu9WcK5R9Ykb0FydjfD0qwWADnidAhkY32b3ncMgNI+HA9PzaV0NvJzsu53/3qy2wSnuwBUMrjHodG7SzaIvg==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Release/netcoreapp3.0/NetCore.Jwt.Token.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b998c3ed768d0e92a4840b871df6dc961a3d8f44 2 | -------------------------------------------------------------------------------- /src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Release/netcoreapp3.0/NetCore.Jwt.Token.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaranetCore/aspNetCore_JsonwebToken/125103e6ee025dcd02a0f62cf38226fafb5542e2/src/Verify&yourself/NetCore.Jwt.Token/NetCore.Jwt.Token/obj/Release/netcoreapp3.0/NetCore.Jwt.Token.assets.cache --------------------------------------------------------------------------------