├── .dockerignore ├── .gitignore ├── .vs └── Jlion.NetCore.Demo │ ├── DesignTimeBuild │ └── .dtbcache │ └── v16 │ └── .suo ├── Jlion.NetCore.Demo.sln ├── README.MD └── src ├── core-data ├── Jlion.NetCore.User.Application.Test │ ├── BaseTest.cs │ ├── Jlion.NetCore.User.Application.Test.csproj │ ├── UserTest.cs │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Dapper.dll │ │ │ ├── Jlion.NetCore.User.Application.Test.deps.json │ │ │ ├── Jlion.NetCore.User.Application.Test.dll │ │ │ ├── Jlion.NetCore.User.Application.Test.pdb │ │ │ ├── Jlion.NetCore.User.Application.Test.runtimeconfig.dev.json │ │ │ ├── Jlion.NetCore.User.Application.Test.runtimeconfig.json │ │ │ ├── Jlion.NetCore.User.Application.dll │ │ │ ├── Jlion.NetCore.User.Application.pdb │ │ │ ├── Jlion.NetCore.User.Domain.dll │ │ │ ├── Jlion.NetCore.User.Domain.pdb │ │ │ ├── Microsoft.Data.Sqlite.dll │ │ │ ├── Microsoft.DotNet.InternalAbstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.CommandLine.dll │ │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Hosting.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ │ ├── Microsoft.Extensions.Logging.Console.dll │ │ │ ├── Microsoft.Extensions.Logging.Debug.dll │ │ │ ├── Microsoft.Extensions.Logging.EventLog.dll │ │ │ ├── Microsoft.Extensions.Logging.EventSource.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ │ ├── MySql.Data.dll │ │ │ ├── NUnit3.TestAdapter.dll │ │ │ ├── NUnit3.TestAdapter.pdb │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Overt.Core.Data.dll │ │ │ ├── SQLitePCLRaw.batteries_green.dll │ │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ │ ├── SQLitePCLRaw.core.dll │ │ │ ├── SQLitePCLRaw.provider.e_sqlite3.dll │ │ │ ├── System.Diagnostics.EventLog.dll │ │ │ ├── System.Xml.XPath.XmlDocument.dll │ │ │ ├── appsettings.json │ │ │ ├── cs │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── nunit.engine.api.dll │ │ │ ├── nunit.engine.dll │ │ │ ├── nunit.framework.dll │ │ │ ├── nunit_random_seed.tmp │ │ │ ├── pl │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── runtimes │ │ │ ├── linux-x64 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x86 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── osx-x64 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.dylib │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netstandard1.3 │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ ├── win │ │ │ │ └── lib │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ └── System.Diagnostics.EventLog.dll │ │ │ │ │ └── netstandard1.3 │ │ │ │ │ └── System.Data.SqlClient.dll │ │ │ ├── win7-x64 │ │ │ │ └── native │ │ │ │ │ ├── e_sqlite3.dll │ │ │ │ │ └── sni.dll │ │ │ └── win7-x86 │ │ │ │ └── native │ │ │ │ ├── e_sqlite3.dll │ │ │ │ └── sni.dll │ │ │ ├── testhost.dll │ │ │ ├── tr │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── Jlion.NetCore.User.Application.Test.AssemblyInfo.cs │ │ │ ├── Jlion.NetCore.User.Application.Test.AssemblyInfoInputs.cache │ │ │ ├── Jlion.NetCore.User.Application.Test.assets.cache │ │ │ ├── Jlion.NetCore.User.Application.Test.csproj.CopyComplete │ │ │ ├── Jlion.NetCore.User.Application.Test.csproj.FileListAbsolute.txt │ │ │ ├── Jlion.NetCore.User.Application.Test.csprojAssemblyReference.cache │ │ │ ├── Jlion.NetCore.User.Application.Test.dll │ │ │ └── Jlion.NetCore.User.Application.Test.pdb │ │ ├── Jlion.NetCore.User.Application.Test.csproj.nuget.cache │ │ ├── Jlion.NetCore.User.Application.Test.csproj.nuget.dgspec.json │ │ ├── Jlion.NetCore.User.Application.Test.csproj.nuget.g.props │ │ ├── Jlion.NetCore.User.Application.Test.csproj.nuget.g.targets │ │ └── project.assets.json ├── Jlion.NetCore.User.Application │ ├── Constracts │ │ └── IUserService.cs │ ├── Jlion.NetCore.User.Application.csproj │ ├── ServiceCollectionExtensions.cs │ ├── Services │ │ └── UserService.cs │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.0 │ │ │ ├── Jlion.NetCore.User.Application.deps.json │ │ │ ├── Jlion.NetCore.User.Application.dll │ │ │ ├── Jlion.NetCore.User.Application.pdb │ │ │ ├── Jlion.NetCore.User.Domain.dll │ │ │ └── Jlion.NetCore.User.Domain.pdb │ └── obj │ │ ├── Debug │ │ └── netstandard2.0 │ │ │ ├── Jlion.NetCore.User.Application.AssemblyInfo.cs │ │ │ ├── Jlion.NetCore.User.Application.AssemblyInfoInputs.cache │ │ │ ├── Jlion.NetCore.User.Application.assets.cache │ │ │ ├── Jlion.NetCore.User.Application.csproj.CopyComplete │ │ │ ├── Jlion.NetCore.User.Application.csproj.FileListAbsolute.txt │ │ │ ├── Jlion.NetCore.User.Application.csprojAssemblyReference.cache │ │ │ ├── Jlion.NetCore.User.Application.dll │ │ │ └── Jlion.NetCore.User.Application.pdb │ │ ├── Jlion.NetCore.User.Application.csproj.nuget.cache │ │ ├── Jlion.NetCore.User.Application.csproj.nuget.dgspec.json │ │ ├── Jlion.NetCore.User.Application.csproj.nuget.g.props │ │ ├── Jlion.NetCore.User.Application.csproj.nuget.g.targets │ │ └── project.assets.json └── Jlion.NetCore.User.Domain │ ├── Contracts │ └── IUserRepository.cs │ ├── Entities │ └── UserEntity.cs │ ├── Jlion.NetCore.User.Domain.csproj │ ├── Repositories │ └── UserRepository.cs │ ├── ServiceCollectionExtensions.cs │ ├── bin │ └── Debug │ │ └── netstandard2.0 │ │ ├── Jlion.NetCore.User.Domain.deps.json │ │ ├── Jlion.NetCore.User.Domain.dll │ │ └── Jlion.NetCore.User.Domain.pdb │ └── obj │ ├── Debug │ └── netstandard2.0 │ │ ├── Jlion.NetCore.User.Domain.AssemblyInfo.cs │ │ ├── Jlion.NetCore.User.Domain.AssemblyInfoInputs.cache │ │ ├── Jlion.NetCore.User.Domain.assets.cache │ │ ├── Jlion.NetCore.User.Domain.csproj.FileListAbsolute.txt │ │ ├── Jlion.NetCore.User.Domain.csprojAssemblyReference.cache │ │ ├── Jlion.NetCore.User.Domain.dll │ │ └── Jlion.NetCore.User.Domain.pdb │ ├── Jlion.NetCore.User.Domain.csproj.nuget.cache │ ├── Jlion.NetCore.User.Domain.csproj.nuget.dgspec.json │ ├── Jlion.NetCore.User.Domain.csproj.nuget.g.props │ ├── Jlion.NetCore.User.Domain.csproj.nuget.g.targets │ └── project.assets.json ├── httpClient └── Jlion.NetCore.HttpClient.DemoService │ ├── Controllers │ └── FirstController.cs │ ├── Dockerfile │ ├── Handler │ └── PrimaryHttpMessageHandler.cs │ ├── HttpMessageHandler │ ├── Log2HttpMessageHandler.cs │ └── LogHttpMessageHandler.cs │ ├── Jlion.NetCore.HttpClient.DemoService.csproj │ ├── Jlion.NetCore.HttpClient.DemoService.csproj.user │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── identityServer4 ├── .gitignore ├── .vs │ └── Jlion.NetCore.Identity.Demo │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ └── .suo ├── Jlion.NetCore.Identity.Demo.sln ├── Jlion.NetCore.Identity.SSOService │ ├── Controllers │ │ ├── LoginController.cs │ │ └── ValuesController.cs │ ├── Dockerfile │ ├── Jlion.NetCore.Identity.SSOService.csproj │ ├── Jlion.NetCore.Identity.SSOService.csproj.user │ ├── Model │ │ └── UserResponse.cs │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Provider │ │ └── UserProvider.cs │ ├── SSOClientStore.cs │ ├── SSOMemberData.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── IdentityModel.dll │ │ │ ├── IdentityServer4.Storage.dll │ │ │ ├── IdentityServer4.dll │ │ │ ├── Jlion.NetCore.Identity.SSOService.Views.dll │ │ │ ├── Jlion.NetCore.Identity.SSOService.Views.pdb │ │ │ ├── Jlion.NetCore.Identity.SSOService.deps.json │ │ │ ├── Jlion.NetCore.Identity.SSOService.dll │ │ │ ├── Jlion.NetCore.Identity.SSOService.exe │ │ │ ├── Jlion.NetCore.Identity.SSOService.pdb │ │ │ ├── Jlion.NetCore.Identity.SSOService.runtimeconfig.dev.json │ │ │ ├── Jlion.NetCore.Identity.SSOService.runtimeconfig.json │ │ │ ├── Microsoft.AspNetCore.Authentication.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ ├── obj │ │ ├── Container │ │ │ ├── ContainerDevelopmentMode.cache │ │ │ ├── ContainerId.cache │ │ │ ├── ContainerName.cache │ │ │ └── ContainerRunContext.cache │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.AssemblyInfo.cs │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.AssemblyInfoInputs.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.RazorAssemblyInfo.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.RazorAssemblyInfo.cs │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.RazorCoreGenerate.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.RazorTargetAssemblyInfo.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.RazorTargetAssemblyInfo.cs │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.TagHelpers.input.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.TagHelpers.output.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.Views.dll │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.Views.pdb │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.assets.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.csproj.CopyComplete │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.csproj.FileListAbsolute.txt │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.csprojAssemblyReference.cache │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.dll │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.exe │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.pdb │ │ │ │ ├── Razor │ │ │ │ └── Pages │ │ │ │ │ ├── Index.cshtml.g.cs │ │ │ │ │ ├── Shared │ │ │ │ │ ├── _Layout.cshtml.g.cs │ │ │ │ │ └── _ValidationScriptsPartial.cshtml.g.cs │ │ │ │ │ ├── _ViewImports.cshtml.g.cs │ │ │ │ │ └── _ViewStart.cshtml.g.cs │ │ │ │ └── staticwebassets │ │ │ │ ├── Jlion.NetCore.Identity.SSOService.StaticWebAssets.Manifest.cache │ │ │ │ └── Jlion.NetCore.Identity.SSOService.StaticWebAssets.xml │ │ ├── Jlion.NetCore.Identity.SSOService.csproj.nuget.cache │ │ ├── Jlion.NetCore.Identity.SSOService.csproj.nuget.dgspec.json │ │ ├── Jlion.NetCore.Identity.SSOService.csproj.nuget.g.props │ │ ├── Jlion.NetCore.Identity.SSOService.csproj.nuget.g.targets │ │ └── project.assets.json │ ├── tempkey.rsa │ └── 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 ├── Jlion.NetCore.Identity.Service │ ├── ClientStore.cs │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Jlion.NetCore.Identity.Service.csproj │ ├── Jlion.NetCore.Identity.Service.csproj.user │ ├── OAuthMemoryData.cs │ ├── ProfileService │ │ └── UserProfileService.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Validator │ │ ├── ResourceOwnerPasswordValidator.cs │ │ ├── RoleTestResourceOwnerPasswordValidator.cs │ │ └── WeiXinOpenGrantValidator.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Release │ │ │ └── netcoreapp3.1 │ │ │ ├── IdentityModel.dll │ │ │ ├── IdentityServer4.Storage.dll │ │ │ ├── IdentityServer4.dll │ │ │ ├── Jlion.NetCore.Identity.Service.deps.json │ │ │ ├── Jlion.NetCore.Identity.Service.dll │ │ │ ├── Jlion.NetCore.Identity.Service.exe │ │ │ ├── Jlion.NetCore.Identity.Service.pdb │ │ │ ├── Jlion.NetCore.Identity.Service.runtimeconfig.dev.json │ │ │ ├── Jlion.NetCore.Identity.Service.runtimeconfig.json │ │ │ ├── Jlion.NetCore.Identity.dll │ │ │ ├── Jlion.NetCore.Identity.pdb │ │ │ ├── Microsoft.AspNetCore.Authentication.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Jlion.NetCore.Identity.Service.assets.cache │ │ │ │ ├── Jlion.NetCore.Identity.Service.csproj.CoreCompileInputs.cache │ │ │ │ ├── Jlion.NetCore.Identity.Service.csproj.FileListAbsolute.txt │ │ │ │ ├── Jlion.NetCore.Identity.Service.exe │ │ │ │ └── Jlion.NetCore.Identity.Service.genruntimeconfig.cache │ │ ├── Jlion.NetCore.Identity.Service.csproj.nuget.dgspec.json │ │ ├── Jlion.NetCore.Identity.Service.csproj.nuget.g.props │ │ ├── Jlion.NetCore.Identity.Service.csproj.nuget.g.targets │ │ ├── Release │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Jlion.NetCore.Identity.Service.AssemblyInfo.cs │ │ │ │ ├── Jlion.NetCore.Identity.Service.AssemblyInfoInputs.cache │ │ │ │ ├── Jlion.NetCore.Identity.Service.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── Jlion.NetCore.Identity.Service.RazorTargetAssemblyInfo.cache │ │ │ │ ├── Jlion.NetCore.Identity.Service.assets.cache │ │ │ │ ├── Jlion.NetCore.Identity.Service.csproj.CopyComplete │ │ │ │ ├── Jlion.NetCore.Identity.Service.csproj.FileListAbsolute.txt │ │ │ │ ├── Jlion.NetCore.Identity.Service.csprojAssemblyReference.cache │ │ │ │ ├── Jlion.NetCore.Identity.Service.dll │ │ │ │ ├── Jlion.NetCore.Identity.Service.exe │ │ │ │ ├── Jlion.NetCore.Identity.Service.pdb │ │ │ │ └── staticwebassets │ │ │ │ ├── Jlion.NetCore.Identity.Service.StaticWebAssets.Manifest.cache │ │ │ │ └── Jlion.NetCore.Identity.Service.StaticWebAssets.xml │ │ ├── project.assets.json │ │ └── project.nuget.cache │ └── tempkey.rsa ├── Jlion.NetCore.Identity.UserApiService │ ├── Controllers │ │ ├── FirstController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ ├── Extension │ │ └── UserIdentityExtension.cs │ ├── Jlion.NetCore.Identity.UserApiService.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Release │ │ │ └── netcoreapp3.1 │ │ │ ├── IdentityModel.AspNetCore.OAuth2Introspection.dll │ │ │ ├── IdentityModel.dll │ │ │ ├── IdentityServer4.AccessTokenValidation.dll │ │ │ ├── Jlion.NetCore.Identity.UserApiService.deps.json │ │ │ ├── Jlion.NetCore.Identity.UserApiService.dll │ │ │ ├── Jlion.NetCore.Identity.UserApiService.exe │ │ │ ├── Jlion.NetCore.Identity.UserApiService.pdb │ │ │ ├── Jlion.NetCore.Identity.UserApiService.runtimeconfig.dev.json │ │ │ ├── Jlion.NetCore.Identity.UserApiService.runtimeconfig.json │ │ │ ├── Jlion.NetCore.Identity.dll │ │ │ ├── Jlion.NetCore.Identity.pdb │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── Jlion.NetCore.Identity.UserApiService.assets.cache │ │ │ ├── Jlion.NetCore.Identity.UserApiService.csproj.CoreCompileInputs.cache │ │ │ ├── Jlion.NetCore.Identity.UserApiService.csproj.FileListAbsolute.txt │ │ │ ├── Jlion.NetCore.Identity.UserApiService.exe │ │ │ └── Jlion.NetCore.Identity.UserApiService.genruntimeconfig.cache │ │ ├── Jlion.NetCore.Identity.UserApiService.csproj.nuget.dgspec.json │ │ ├── Jlion.NetCore.Identity.UserApiService.csproj.nuget.g.props │ │ ├── Jlion.NetCore.Identity.UserApiService.csproj.nuget.g.targets │ │ ├── Release │ │ └── netcoreapp3.1 │ │ │ ├── Jlion.NetCore.Identity.UserApiService.AssemblyInfo.cs │ │ │ ├── Jlion.NetCore.Identity.UserApiService.AssemblyInfoInputs.cache │ │ │ ├── Jlion.NetCore.Identity.UserApiService.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── Jlion.NetCore.Identity.UserApiService.RazorTargetAssemblyInfo.cache │ │ │ ├── Jlion.NetCore.Identity.UserApiService.assets.cache │ │ │ ├── Jlion.NetCore.Identity.UserApiService.csproj.CopyComplete │ │ │ ├── Jlion.NetCore.Identity.UserApiService.csproj.FileListAbsolute.txt │ │ │ ├── Jlion.NetCore.Identity.UserApiService.csprojAssemblyReference.cache │ │ │ ├── Jlion.NetCore.Identity.UserApiService.dll │ │ │ ├── Jlion.NetCore.Identity.UserApiService.exe │ │ │ ├── Jlion.NetCore.Identity.UserApiService.pdb │ │ │ └── staticwebassets │ │ │ ├── Jlion.NetCore.Identity.UserApiService.StaticWebAssets.Manifest.cache │ │ │ └── Jlion.NetCore.Identity.UserApiService.StaticWebAssets.xml │ │ ├── project.assets.json │ │ └── project.nuget.cache └── Jlion.NetCore.Identity │ ├── Constants │ ├── GrantTypeConstants.cs │ └── ParamConstants.cs │ ├── Enums │ ├── EnumUserClaim.cs │ └── EnumUserRole.cs │ ├── Jlion.NetCore.Identity.csproj │ ├── Model │ └── UserModel.cs │ ├── OAuthConfig.cs │ └── bin │ └── Release │ └── netstandard2.0 │ ├── Jlion.NetCore.Identity.deps.json │ ├── Jlion.NetCore.Identity.dll │ └── Jlion.NetCore.Identity.pdb └── microService ├── Jlion.NetCore.OrderApiService ├── Controllers │ ├── OrderController.cs │ └── WeatherForecastController.cs ├── Dockerfile ├── Jlion.NetCore.OrderApiService.csproj ├── Jlion.NetCore.OrderApiService.csproj.user ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json ├── dllconfigs │ ├── Jlion.NetCore.OrderService.Service.Grpc.dll.json │ └── consulsettings.json └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── Jlion.NetCore.OrderApiService.assets.cache │ │ ├── Jlion.NetCore.OrderApiService.csproj.FileListAbsolute.txt │ │ └── Jlion.NetCore.OrderApiService.exe │ ├── Jlion.NetCore.OrderApiService.csproj.nuget.dgspec.json │ ├── Jlion.NetCore.OrderApiService.csproj.nuget.g.props │ ├── Jlion.NetCore.OrderApiService.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Jlion.NetCore.OrderService.Grpc ├── Class1.cs ├── Jlion.NetCore.OrderService.Grpc.csproj ├── JlionOrderService.cs ├── JlionOrderServiceGrpc.cs ├── OrderRequest.cs ├── coreconfigs │ ├── clientsettings.json │ ├── consulsettings.json │ └── grpcsettings.json ├── fmconfigs │ ├── Client.config │ ├── Consul.config │ └── Server.config └── obj │ ├── Debug │ └── netstandard2.0 │ │ ├── Jlion.NetCore.OrderService.Grpc.assets.cache │ │ ├── Jlion.NetCore.OrderService.Grpc.csproj.CoreCompileInputs.cache │ │ └── Jlion.NetCore.OrderService.Grpc.csproj.FileListAbsolute.txt │ ├── Jlion.NetCore.OrderService.Grpc.csproj.nuget.dgspec.json │ ├── Jlion.NetCore.OrderService.Grpc.csproj.nuget.g.props │ ├── Jlion.NetCore.OrderService.Grpc.csproj.nuget.g.targets │ ├── Release │ └── netstandard2.0 │ │ ├── Jlion.NetCore.OrderService.Grpc.AssemblyInfo.cs │ │ ├── Jlion.NetCore.OrderService.Grpc.AssemblyInfoInputs.cache │ │ ├── Jlion.NetCore.OrderService.Grpc.assets.cache │ │ ├── Jlion.NetCore.OrderService.Grpc.csproj.FileListAbsolute.txt │ │ ├── Jlion.NetCore.OrderService.Grpc.dll │ │ └── Jlion.NetCore.OrderService.Grpc.pdb │ ├── project.assets.json │ └── project.nuget.cache └── Jlion.NetCore.OrderService ├── Dockerfile ├── HostedService.cs ├── Impls └── JlionOrderServiceImpl.cs ├── Jlion.NetCore.OrderService.csproj ├── Jlion.NetCore.OrderService.csproj.user ├── Program.cs ├── Properties └── launchSettings.json ├── Protos ├── JlionOrderService.proto ├── JlionOrderService.proto.xml ├── JlionOrderService.protobin └── OrderRequest.proto ├── appsettings.json ├── dllconfigs └── consulsettings.json └── obj ├── Debug └── netcoreapp3.1 │ ├── Jlion.NetCore.OrderService.assets.cache │ ├── Jlion.NetCore.OrderService.csproj.CoreCompileInputs.cache │ ├── Jlion.NetCore.OrderService.csproj.FileListAbsolute.txt │ ├── Jlion.NetCore.OrderService.exe │ └── Jlion.NetCore.OrderService.genruntimeconfig.cache ├── Jlion.NetCore.OrderService.csproj.nuget.dgspec.json ├── Jlion.NetCore.OrderService.csproj.nuget.g.props ├── Jlion.NetCore.OrderService.csproj.nuget.g.targets ├── Release └── netcoreapp3.1 │ ├── Jlion.NetCore.OrderService.AssemblyInfo.cs │ ├── Jlion.NetCore.OrderService.AssemblyInfoInputs.cache │ ├── Jlion.NetCore.OrderService.assets.cache │ ├── Jlion.NetCore.OrderService.csproj.CopyComplete │ ├── Jlion.NetCore.OrderService.csproj.FileListAbsolute.txt │ ├── Jlion.NetCore.OrderService.csprojAssemblyReference.cache │ ├── Jlion.NetCore.OrderService.dll │ ├── Jlion.NetCore.OrderService.exe │ └── Jlion.NetCore.OrderService.pdb ├── project.assets.json └── project.nuget.cache /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Jlion.NetCore.Demo/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/.vs/Jlion.NetCore.Demo/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/Jlion.NetCore.Demo/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/.vs/Jlion.NetCore.Demo/v16/.suo -------------------------------------------------------------------------------- /Jlion.NetCore.Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/Jlion.NetCore.Demo.sln -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/README.MD -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/BaseTest.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/Jlion.NetCore.User.Application.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/Jlion.NetCore.User.Application.Test.csproj -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/UserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/UserTest.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/appsettings.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Dapper.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.deps.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.runtimeconfig.dev.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.runtimeconfig.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Domain.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Jlion.NetCore.User.Domain.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Data.Sqlite.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/MySql.Data.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Overt.Core.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/Overt.Core.Data.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/SQLitePCLRaw.batteries_green.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/SQLitePCLRaw.batteries_green.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/SQLitePCLRaw.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/SQLitePCLRaw.core.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/SQLitePCLRaw.provider.e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/SQLitePCLRaw.provider.e_sqlite3.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/nunit.engine.api.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/nunit.engine.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/nunit.framework.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 591403712 -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/linux-x86/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/linux-x86/native/libe_sqlite3.so -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/osx-x64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/osx-x64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win7-x64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win7-x64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win7-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win7-x64/native/sni.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win7-x86/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win7-x86/native/e_sqlite3.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win7-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/runtimes/win7-x86/native/sni.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/testhost.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.assets.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Debug/netcoreapp3.1/Jlion.NetCore.User.Application.Test.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Jlion.NetCore.User.Application.Test.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Jlion.NetCore.User.Application.Test.csproj.nuget.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Jlion.NetCore.User.Application.Test.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Jlion.NetCore.User.Application.Test.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Jlion.NetCore.User.Application.Test.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Jlion.NetCore.User.Application.Test.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/Jlion.NetCore.User.Application.Test.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/Jlion.NetCore.User.Application.Test.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application.Test/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application.Test/obj/project.assets.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/Constracts/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/Constracts/IUserService.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/Jlion.NetCore.User.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/Jlion.NetCore.User.Application.csproj -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/Services/UserService.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Application.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Application.deps.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Application.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Application.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 72da4875ebe9243894a49fd5a334352579d8770a 2 | -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.assets.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Debug/netstandard2.0/Jlion.NetCore.User.Application.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Jlion.NetCore.User.Application.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Jlion.NetCore.User.Application.csproj.nuget.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Jlion.NetCore.User.Application.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Jlion.NetCore.User.Application.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Jlion.NetCore.User.Application.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Jlion.NetCore.User.Application.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/Jlion.NetCore.User.Application.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/Jlion.NetCore.User.Application.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Application/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Application/obj/project.assets.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/Contracts/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/Contracts/IUserRepository.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/Entities/UserEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/Entities/UserEntity.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/Jlion.NetCore.User.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/Jlion.NetCore.User.Domain.csproj -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.deps.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/bin/Debug/netstandard2.0/Jlion.NetCore.User.Domain.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b34c47f438eae4c247ad5b3bcc5538145a902894 2 | -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.assets.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.dll -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Debug/netstandard2.0/Jlion.NetCore.User.Domain.pdb -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Jlion.NetCore.User.Domain.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Jlion.NetCore.User.Domain.csproj.nuget.cache -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Jlion.NetCore.User.Domain.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Jlion.NetCore.User.Domain.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Jlion.NetCore.User.Domain.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Jlion.NetCore.User.Domain.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/Jlion.NetCore.User.Domain.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/Jlion.NetCore.User.Domain.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/core-data/Jlion.NetCore.User.Domain/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/core-data/Jlion.NetCore.User.Domain/obj/project.assets.json -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/Controllers/FirstController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/Controllers/FirstController.cs -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/Dockerfile -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/Handler/PrimaryHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/Handler/PrimaryHttpMessageHandler.cs -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/HttpMessageHandler/Log2HttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/HttpMessageHandler/Log2HttpMessageHandler.cs -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/HttpMessageHandler/LogHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/HttpMessageHandler/LogHttpMessageHandler.cs -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/Jlion.NetCore.HttpClient.DemoService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/Jlion.NetCore.HttpClient.DemoService.csproj -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/Jlion.NetCore.HttpClient.DemoService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/Jlion.NetCore.HttpClient.DemoService.csproj.user -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/Program.cs -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/Startup.cs -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/WeatherForecast.cs -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/appsettings.Development.json -------------------------------------------------------------------------------- /src/httpClient/Jlion.NetCore.HttpClient.DemoService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/httpClient/Jlion.NetCore.HttpClient.DemoService/appsettings.json -------------------------------------------------------------------------------- /src/identityServer4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/.gitignore -------------------------------------------------------------------------------- /src/identityServer4/.vs/Jlion.NetCore.Identity.Demo/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/.vs/Jlion.NetCore.Identity.Demo/config/applicationhost.config -------------------------------------------------------------------------------- /src/identityServer4/.vs/Jlion.NetCore.Identity.Demo/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/.vs/Jlion.NetCore.Identity.Demo/v16/.suo -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Demo.sln -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Controllers/LoginController.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Dockerfile -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Jlion.NetCore.Identity.SSOService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Jlion.NetCore.Identity.SSOService.csproj -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Jlion.NetCore.Identity.SSOService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Jlion.NetCore.Identity.SSOService.csproj.user -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Model/UserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Model/UserResponse.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Program.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Provider/UserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Provider/UserProvider.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/SSOClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/SSOClientStore.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/SSOMemberData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/SSOMemberData.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/Startup.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/appsettings.Development.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/appsettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/IdentityModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/IdentityModel.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/IdentityServer4.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/IdentityServer4.Storage.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/IdentityServer4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/IdentityServer4.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.Views.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.Views.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.deps.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.exe -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.runtimeconfig.dev.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.runtimeconfig.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Container/ContainerDevelopmentMode.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Container/ContainerId.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Container/ContainerName.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Container/ContainerRunContext.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 35c4e7b111be5cad42a60bab069fe288b336b2d3 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 9012b208c33b61f0fa94708940b54c78a10dc8cd 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | 48fe2e3d14416c1873b28280e16f7ae008730500 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 8b8c8047b6d24ee42549bfb71e88e46965cfcf5e 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.RazorTargetAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.RazorTargetAssemblyInfo.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.TagHelpers.output.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.TagHelpers.output.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.Views.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.Views.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.assets.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.exe -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.SSOService.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/Index.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/Index.cshtml.g.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/Shared/_Layout.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/Shared/_Layout.cshtml.g.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/Shared/_ValidationScriptsPartial.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/Shared/_ValidationScriptsPartial.cshtml.g.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/_ViewImports.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/_ViewImports.cshtml.g.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/_ViewStart.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/Razor/Pages/_ViewStart.cshtml.g.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/staticwebassets/Jlion.NetCore.Identity.SSOService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Debug/netcoreapp3.1/staticwebassets/Jlion.NetCore.Identity.SSOService.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Jlion.NetCore.Identity.SSOService.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Jlion.NetCore.Identity.SSOService.csproj.nuget.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Jlion.NetCore.Identity.SSOService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Jlion.NetCore.Identity.SSOService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Jlion.NetCore.Identity.SSOService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Jlion.NetCore.Identity.SSOService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Jlion.NetCore.Identity.SSOService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/Jlion.NetCore.Identity.SSOService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/obj/project.assets.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/tempkey.rsa -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.SSOService/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/ClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/ClientStore.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Jlion.NetCore.Identity.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Jlion.NetCore.Identity.Service.csproj -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Jlion.NetCore.Identity.Service.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Jlion.NetCore.Identity.Service.csproj.user -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/OAuthMemoryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/OAuthMemoryData.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/ProfileService/UserProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/ProfileService/UserProfileService.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Program.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Startup.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Validator/ResourceOwnerPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Validator/ResourceOwnerPasswordValidator.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Validator/RoleTestResourceOwnerPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Validator/RoleTestResourceOwnerPasswordValidator.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/Validator/WeiXinOpenGrantValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/Validator/WeiXinOpenGrantValidator.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/WeatherForecast.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/appsettings.Development.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/appsettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/IdentityModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/IdentityModel.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/IdentityServer4.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/IdentityServer4.Storage.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/IdentityServer4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/IdentityServer4.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.deps.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.exe -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.runtimeconfig.dev.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.runtimeconfig.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/bin/Release/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.Service.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.Service.assets.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.Service.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cbba7447a6d3627bd43aac15cd460e97bef84dd2 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.Service.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.Service.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.Service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.Service.exe -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.Service.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Jlion.NetCore.Identity.Service.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Jlion.NetCore.Identity.Service.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Jlion.NetCore.Identity.Service.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Jlion.NetCore.Identity.Service.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Jlion.NetCore.Identity.Service.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Jlion.NetCore.Identity.Service.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 482aaff21c0e4b61be9ab0ba5947937f1363253c 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | f8e411ad77f2441bb5a2ffffc9252168a62882fd 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.assets.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.exe -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.Service.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/staticwebassets/Jlion.NetCore.Identity.Service.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/Release/netcoreapp3.1/staticwebassets/Jlion.NetCore.Identity.Service.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/project.assets.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.Service/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.Service/tempkey.rsa -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/Controllers/FirstController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/Controllers/FirstController.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/Controllers/UserController.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/Extension/UserIdentityExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/Extension/UserIdentityExtension.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/Jlion.NetCore.Identity.UserApiService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/Jlion.NetCore.Identity.UserApiService.csproj -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/Program.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/Startup.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/WeatherForecast.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/appsettings.Development.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/appsettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/IdentityModel.AspNetCore.OAuth2Introspection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/IdentityModel.AspNetCore.OAuth2Introspection.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/IdentityModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/IdentityModel.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/IdentityServer4.AccessTokenValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/IdentityServer4.AccessTokenValidation.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.deps.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.exe -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.runtimeconfig.dev.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.runtimeconfig.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Jlion.NetCore.Identity.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/bin/Release/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.assets.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 21090304f3815b3692bb0e4a1917af39c9aa8494 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.exe -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Jlion.NetCore.Identity.UserApiService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Jlion.NetCore.Identity.UserApiService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Jlion.NetCore.Identity.UserApiService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Jlion.NetCore.Identity.UserApiService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Jlion.NetCore.Identity.UserApiService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Jlion.NetCore.Identity.UserApiService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a56f309af95d4be1b1d81621c995193775901bb8 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | b7bb48530987a90af29e405d2a0cfe5af3778498 2 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.assets.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.exe -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/Jlion.NetCore.Identity.UserApiService.pdb -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/staticwebassets/Jlion.NetCore.Identity.UserApiService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/Release/netcoreapp3.1/staticwebassets/Jlion.NetCore.Identity.UserApiService.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/project.assets.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity.UserApiService/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/Constants/GrantTypeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/Constants/GrantTypeConstants.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/Constants/ParamConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/Constants/ParamConstants.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/Enums/EnumUserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/Enums/EnumUserClaim.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/Enums/EnumUserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/Enums/EnumUserRole.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/Jlion.NetCore.Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/Jlion.NetCore.Identity.csproj -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/Model/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/Model/UserModel.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/OAuthConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/OAuthConfig.cs -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/bin/Release/netstandard2.0/Jlion.NetCore.Identity.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/bin/Release/netstandard2.0/Jlion.NetCore.Identity.deps.json -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/bin/Release/netstandard2.0/Jlion.NetCore.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/bin/Release/netstandard2.0/Jlion.NetCore.Identity.dll -------------------------------------------------------------------------------- /src/identityServer4/Jlion.NetCore.Identity/bin/Release/netstandard2.0/Jlion.NetCore.Identity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/identityServer4/Jlion.NetCore.Identity/bin/Release/netstandard2.0/Jlion.NetCore.Identity.pdb -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/Controllers/OrderController.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/Dockerfile -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/Jlion.NetCore.OrderApiService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/Jlion.NetCore.OrderApiService.csproj -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/Jlion.NetCore.OrderApiService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/Jlion.NetCore.OrderApiService.csproj.user -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/Program.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/Startup.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/WeatherForecast.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/appsettings.Development.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/appsettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/dllconfigs/Jlion.NetCore.OrderService.Service.Grpc.dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/dllconfigs/Jlion.NetCore.OrderService.Service.Grpc.dll.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/dllconfigs/consulsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/dllconfigs/consulsettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderApiService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderApiService.assets.cache -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderApiService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderApiService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderApiService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderApiService.exe -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/obj/Jlion.NetCore.OrderApiService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/obj/Jlion.NetCore.OrderApiService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/obj/Jlion.NetCore.OrderApiService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/obj/Jlion.NetCore.OrderApiService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/obj/Jlion.NetCore.OrderApiService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/obj/Jlion.NetCore.OrderApiService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/obj/project.assets.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderApiService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderApiService/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/Class1.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/Jlion.NetCore.OrderService.Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/Jlion.NetCore.OrderService.Grpc.csproj -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/JlionOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/JlionOrderService.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/JlionOrderServiceGrpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/JlionOrderServiceGrpc.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/OrderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/OrderRequest.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/coreconfigs/clientsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/coreconfigs/clientsettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/coreconfigs/consulsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/coreconfigs/consulsettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/coreconfigs/grpcsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/coreconfigs/grpcsettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/fmconfigs/Client.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/fmconfigs/Client.config -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/fmconfigs/Consul.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/fmconfigs/Consul.config -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/fmconfigs/Server.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/fmconfigs/Server.config -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Debug/netstandard2.0/Jlion.NetCore.OrderService.Grpc.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Debug/netstandard2.0/Jlion.NetCore.OrderService.Grpc.assets.cache -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Debug/netstandard2.0/Jlion.NetCore.OrderService.Grpc.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | da56c029a4c112fab31d6e3843020c049aeb36d3 2 | -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Debug/netstandard2.0/Jlion.NetCore.OrderService.Grpc.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Debug/netstandard2.0/Jlion.NetCore.OrderService.Grpc.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Jlion.NetCore.OrderService.Grpc.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Jlion.NetCore.OrderService.Grpc.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Jlion.NetCore.OrderService.Grpc.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Jlion.NetCore.OrderService.Grpc.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Jlion.NetCore.OrderService.Grpc.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Jlion.NetCore.OrderService.Grpc.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a06b86f05d74e34beffb1612929e86a86356179b 2 | -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.assets.cache -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.dll -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/Release/netstandard2.0/Jlion.NetCore.OrderService.Grpc.pdb -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/project.assets.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService.Grpc/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService.Grpc/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Dockerfile -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/HostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/HostedService.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Impls/JlionOrderServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Impls/JlionOrderServiceImpl.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Jlion.NetCore.OrderService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Jlion.NetCore.OrderService.csproj -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Jlion.NetCore.OrderService.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Jlion.NetCore.OrderService.csproj.user -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Program.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Protos/JlionOrderService.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Protos/JlionOrderService.proto -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Protos/JlionOrderService.proto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Protos/JlionOrderService.proto.xml -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Protos/JlionOrderService.protobin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Protos/JlionOrderService.protobin -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/Protos/OrderRequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/Protos/OrderRequest.proto -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/appsettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/dllconfigs/consulsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/dllconfigs/consulsettings.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderService.assets.cache -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d612068bee1e25e96361a656bdd2ebf21d9bb538 2 | -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderService.exe -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Debug/netcoreapp3.1/Jlion.NetCore.OrderService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Jlion.NetCore.OrderService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Jlion.NetCore.OrderService.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Jlion.NetCore.OrderService.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Jlion.NetCore.OrderService.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Jlion.NetCore.OrderService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Jlion.NetCore.OrderService.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 515456b0fb1fa171acd70098f71cd5fbdc8e58e6 2 | -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.assets.cache -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.dll -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.exe -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/Release/netcoreapp3.1/Jlion.NetCore.OrderService.pdb -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/project.assets.json -------------------------------------------------------------------------------- /src/microService/Jlion.NetCore.OrderService/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-jlion/NetCoreDemo/HEAD/src/microService/Jlion.NetCore.OrderService/obj/project.nuget.cache --------------------------------------------------------------------------------