From 82d5db9ecf95e1a1536ddab66957ce9a5531cc9e Mon Sep 17 00:00:00 2001 From: cKey <35512826+colinin@users.noreply.github.com> Date: Fri, 15 May 2020 23:48:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E5=90=88=E5=90=8E=E5=8F=B0=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 30 + README.en.md | 244 + README.md | 289 + aspnet-core/.gitignore | 1 + ...UN.ApiGateway.Application.Contracts.csproj | 26 + .../ApiGatewayApplicationContractsModule.cs | 27 + .../ApiGatewayPermissionDefinitionProvider.cs | 55 + .../ApiGateway/ApiGatewayPermissions.cs | 56 + .../Localization/ApplicationContracts/en.json | 15 + .../ApplicationContracts/zh-Hans.json | 16 + .../Dto/AggregateRouteGetByAppIdInputDto.cs | 10 + .../Dto/AggregateRouteGetByPagedInputDto.cs | 14 + .../Dto/Base/AggregateReRouteDtoBase.cs | 24 + .../Ocelot/Dto/Base/DynamicReRouteDtoBase.cs | 17 + .../Dto/Base/GlobalConfigurationDtoBase.cs | 35 + .../Ocelot/Dto/Base/ReRouteDtoBase.cs | 64 + .../Dto/DynamicRouteGetByAppIdInputDto.cs | 10 + .../ApiGateway/Ocelot/Dto/GlobalCreateDto.cs | 10 + .../Ocelot/Dto/GlobalGetByAppIdInputDto.cs | 10 + .../Ocelot/Dto/GlobalGetByPagedInputDto.cs | 9 + .../ApiGateway/Ocelot/Dto/GlobalUpdateDto.cs | 10 + .../ApiGateway/Ocelot/Dto/ReRouteCreateDto.cs | 15 + .../Ocelot/Dto/ReRouteGetByAppIdInputDto.cs | 11 + .../Ocelot/Dto/ReRouteGetByIdInputDto.cs | 10 + .../Ocelot/Dto/ReRouteGetByNameInputDto.cs | 11 + .../Ocelot/Dto/ReRouteGetByPagedInputDto.cs | 14 + .../ApiGateway/Ocelot/Dto/ReRouteUpdateDto.cs | 17 + .../Dto/Result/AggregateReRouteConfigDto.cs | 12 + .../Ocelot/Dto/Result/AggregateReRouteDto.cs | 16 + .../Dto/Result/AuthenticationOptionsDto.cs | 16 + .../Ocelot/Dto/Result/CacheOptionsDto.cs | 11 + .../Ocelot/Dto/Result/DynamicReRouteDto.cs | 12 + .../Dto/Result/GlobalConfigurationDto.cs | 17 + .../Ocelot/Dto/Result/HostAndPortDto.cs | 11 + .../Dto/Result/HttpHandlerOptionsDto.cs | 18 + .../Dto/Result/LoadBalancerOptionsDto.cs | 12 + .../Ocelot/Dto/Result/QosOptionsDto.cs | 14 + .../Ocelot/Dto/Result/RateLimitOptionsDto.cs | 14 + .../Ocelot/Dto/Result/RateLimitRuleDto.cs | 23 + .../Ocelot/Dto/Result/ReRouteDto.cs | 20 + .../Ocelot/Dto/Result/SecurityOptionsDto.cs | 18 + .../Dto/Result/ServiceDiscoveryProviderDto.cs | 17 + .../Ocelot/Dto/RouteGroupAppIdsDto.cs | 13 + .../Ocelot/Dto/RouteGroupCreateDto.cs | 27 + .../ApiGateway/Ocelot/Dto/RouteGroupDto.cs | 15 + .../Dto/RouteGroupGetByAppIdInputDto.cs | 10 + .../Dto/RouteGroupGetByPagedInputDto.cs | 9 + .../Ocelot/Dto/RouteGroupUpdateDto.cs | 19 + .../Ocelot/IAggregateReRouteAppService.cs | 13 + .../Ocelot/IDynamicReRouteAppService.cs | 11 + .../Ocelot/IGlobalConfigurationAppService.cs | 19 + .../ApiGateway/Ocelot/IReRouteAppService.cs | 25 + .../Ocelot/IRouteGroupAppService.cs | 20 + ...ApiGateway.Application.Contracts.deps.json | 1780 ++ ...NGYUN.ApiGateway.Application.Contracts.dll | Bin 0 -> 38912 bytes ...NGYUN.ApiGateway.Application.Contracts.pdb | Bin 0 -> 13848 bytes .../LINGYUN.ApiGateway.Domain.Shared.dll | Bin 0 -> 15360 bytes .../LINGYUN.ApiGateway.Domain.Shared.pdb | Bin 0 -> 2532 bytes ...eway.Application.Contracts.AssemblyInfo.cs | 23 + ...ication.Contracts.AssemblyInfoInputs.cache | 1 + ...Gateway.Application.Contracts.assets.cache | Bin 0 -> 41470 bytes ....Application.Contracts.csproj.CopyComplete | 0 ...n.Contracts.csproj.CoreCompileInputs.cache | 1 + ...tion.Contracts.csproj.FileListAbsolute.txt | 23 + ...on.Contracts.csprojAssemblyReference.cache | Bin 0 -> 6430 bytes ...NGYUN.ApiGateway.Application.Contracts.dll | Bin 0 -> 38912 bytes ...NGYUN.ApiGateway.Application.Contracts.pdb | Bin 0 -> 13848 bytes ...y.Application.Contracts.csproj.nuget.cache | 5 + ...ication.Contracts.csproj.nuget.dgspec.json | 142 + ...Application.Contracts.csproj.nuget.g.props | 15 + ...plication.Contracts.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4166 +++ .../obj/project.nuget.cache | 103 + .../LINGYUN.ApiGateway.Application.csproj | 17 + .../ApiGatewayApplicationAutoMapperProfile.cs | 206 + .../ApiGateway/ApiGatewayApplicationModule.cs | 26 + .../ApiGatewayApplicationServiceBase.cs | 13 + .../Ocelot/AggregateReRouteAppService.cs | 38 + .../Ocelot/DynamicReRouteAppService.cs | 25 + .../Ocelot/GlobalConfigurationAppService.cs | 127 + .../ApiGateway/Ocelot/ReRouteAppService.cs | 166 + .../ApiGateway/Ocelot/RouteGroupAppService.cs | 89 + ...NGYUN.ApiGateway.Application.Contracts.dll | Bin 0 -> 38912 bytes ...NGYUN.ApiGateway.Application.Contracts.pdb | Bin 0 -> 13848 bytes .../LINGYUN.ApiGateway.Application.deps.json | 2005 ++ .../LINGYUN.ApiGateway.Application.dll | Bin 0 -> 54272 bytes .../LINGYUN.ApiGateway.Application.pdb | Bin 0 -> 9964 bytes .../LINGYUN.ApiGateway.Domain.Shared.dll | Bin 0 -> 15360 bytes .../LINGYUN.ApiGateway.Domain.Shared.pdb | Bin 0 -> 2532 bytes .../LINGYUN.ApiGateway.Domain.dll | Bin 0 -> 39424 bytes .../LINGYUN.ApiGateway.Domain.pdb | Bin 0 -> 16220 bytes ...YUN.ApiGateway.Application.AssemblyInfo.cs | 23 + ...teway.Application.AssemblyInfoInputs.cache | 1 + ...INGYUN.ApiGateway.Application.assets.cache | Bin 0 -> 46277 bytes ...ApiGateway.Application.csproj.CopyComplete | 0 ...ay.Application.csproj.FileListAbsolute.txt | 30 + ....Application.csprojAssemblyReference.cache | Bin 0 -> 11657 bytes .../LINGYUN.ApiGateway.Application.dll | Bin 0 -> 54272 bytes .../LINGYUN.ApiGateway.Application.pdb | Bin 0 -> 9964 bytes ....ApiGateway.Application.csproj.nuget.cache | 5 + ...teway.Application.csproj.nuget.dgspec.json | 291 + ...piGateway.Application.csproj.nuget.g.props | 15 + ...Gateway.Application.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4560 ++++ .../obj/project.nuget.cache | 113 + .../LINGYUN.ApiGateway.Domain.Shared.csproj | 22 + .../LINGYUN/ApiGateway/ApiGatewayConsts.cs | 7 + .../ApiGatewayDomainSharedModule.cs | 32 + .../EventBus/ApigatewayConfigChangeCommand.cs | 23 + .../Localization/ApiGatewayResource.cs | 10 + .../Localization/DomainShared/en.json | 83 + .../Localization/DomainShared/zh-Hans.json | 83 + .../ApiGateway/Ocelot/RouteGroupAppKey.cs | 13 + .../ApiGatewaySettingDefinitionProvider.cs | 12 + .../Settings/ApiGatewaySettingNames.cs | 9 + .../Newtonsoft/Json/HexLongConverter.cs | 30 + ...LINGYUN.ApiGateway.Domain.Shared.deps.json | 1435 + .../LINGYUN.ApiGateway.Domain.Shared.dll | Bin 0 -> 15360 bytes .../LINGYUN.ApiGateway.Domain.Shared.pdb | Bin 0 -> 2532 bytes ...N.ApiGateway.Domain.Shared.AssemblyInfo.cs | 23 + ...way.Domain.Shared.AssemblyInfoInputs.cache | 1 + ...GYUN.ApiGateway.Domain.Shared.assets.cache | Bin 0 -> 34346 bytes ...main.Shared.csproj.CoreCompileInputs.cache | 1 + ....Domain.Shared.csproj.FileListAbsolute.txt | 17 + ...omain.Shared.csprojAssemblyReference.cache | Bin 0 -> 424 bytes .../LINGYUN.ApiGateway.Domain.Shared.dll | Bin 0 -> 15360 bytes .../LINGYUN.ApiGateway.Domain.Shared.pdb | Bin 0 -> 2532 bytes ...piGateway.Domain.Shared.csproj.nuget.cache | 5 + ...way.Domain.Shared.csproj.nuget.dgspec.json | 73 + ...Gateway.Domain.Shared.csproj.nuget.g.props | 15 + ...teway.Domain.Shared.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 3694 +++ .../obj/project.nuget.cache | 87 + .../LINGYUN.ApiGateway.Domain.csproj | 18 + .../ApiGateway/ApiGatewayDomainModule.cs | 10 + .../ApiGateway/Data/Filter/IActivation.cs | 7 + .../Ocelot/Aggregate/AggregateReRoute.cs | 99 + .../Aggregate/AggregateReRouteConfig.cs | 29 + .../Aggregate/IAggregateReRouteRepository.cs | 13 + .../Ocelot/AuthenticationOptions.cs | 40 + .../LINGYUN/ApiGateway/Ocelot/CacheOptions.cs | 26 + .../Ocelot/Dynamic/DynamicReRoute.cs | 31 + .../Dynamic/IDynamicReRouteRepository.cs | 13 + .../Ocelot/Global/GlobalConfiguration.cs | 58 + .../Ocelot/Global/IGlobalConfigRepository.cs | 14 + .../LINGYUN/ApiGateway/Ocelot/Headers.cs | 26 + .../LINGYUN/ApiGateway/Ocelot/HostAndPort.cs | 27 + .../ApiGateway/Ocelot/HttpHandlerOptions.cs | 72 + .../ApiGateway/Ocelot/LoadBalancerOptions.cs | 52 + .../LINGYUN/ApiGateway/Ocelot/QoSOptions.cs | 51 + .../ApiGateway/Ocelot/RateLimitOptions.cs | 63 + .../ApiGateway/Ocelot/RateLimitRule.cs | 66 + .../Ocelot/Route/IReRouteRepository.cs | 23 + .../ApiGateway/Ocelot/Route/ReRoute.cs | 188 + .../Ocelot/RouteGroup/IRouteGroupChecker.cs | 9 + .../RouteGroup/IRouteGroupRepository.cs | 16 + .../Ocelot/RouteGroup/RouteGroup.cs | 27 + .../Ocelot/RouteGroup/RouteGroupChecker.cs | 32 + .../ApiGateway/Ocelot/SecurityOptions.cs | 32 + .../Ocelot/ServiceDiscoveryProvider.cs | 32 + .../Snowflake/ISnowflakeIdGenerator.cs | 7 + .../System/Linq/IQueryableExtensions.cs | 52 + .../LINGYUN.ApiGateway.Domain.Shared.dll | Bin 0 -> 15360 bytes .../LINGYUN.ApiGateway.Domain.Shared.pdb | Bin 0 -> 2532 bytes .../LINGYUN.ApiGateway.Domain.deps.json | 1756 ++ .../LINGYUN.ApiGateway.Domain.dll | Bin 0 -> 39424 bytes .../LINGYUN.ApiGateway.Domain.pdb | Bin 0 -> 16220 bytes .../LINGYUN.ApiGateway.Domain.AssemblyInfo.cs | 23 + ...ApiGateway.Domain.AssemblyInfoInputs.cache | 1 + .../LINGYUN.ApiGateway.Domain.assets.cache | Bin 0 -> 41067 bytes ...GYUN.ApiGateway.Domain.csproj.CopyComplete | 0 ...Gateway.Domain.csproj.FileListAbsolute.txt | 22 + ...teway.Domain.csprojAssemblyReference.cache | Bin 0 -> 424 bytes .../LINGYUN.ApiGateway.Domain.dll | Bin 0 -> 39424 bytes .../LINGYUN.ApiGateway.Domain.pdb | Bin 0 -> 16220 bytes ...NGYUN.ApiGateway.Domain.csproj.nuget.cache | 5 + ...ApiGateway.Domain.csproj.nuget.dgspec.json | 150 + ...YUN.ApiGateway.Domain.csproj.nuget.g.props | 15 + ...N.ApiGateway.Domain.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4164 +++ .../obj/project.nuget.cache | 102 + ...GYUN.ApiGateway.EntityFrameworkCore.csproj | 16 + .../ApiGatewayDbContext.cs | 52 + ...GatewayDbContextModelCreatingExtensions.cs | 314 + .../ApiGatewayEfCoreRepositoryBase.cs | 53 + .../ApiGatewayEntityFrameworkCoreModule.cs | 57 + ...GatewayModelBuilderConfigurationOptions.cs | 19 + .../EfCoreAggregateReRouteRepository.cs | 42 + .../Ocelot/EfCoreDynamicReRouteRepository.cs | 33 + .../Ocelot/EfCoreGlobalConfigRepository.cs | 64 + .../Ocelot/EfCoreReRouteRepository.cs | 84 + .../Ocelot/EfCoreRouteGroupRepository.cs | 46 + .../LINGYUN.ApiGateway.Domain.Shared.dll | Bin 0 -> 15360 bytes .../LINGYUN.ApiGateway.Domain.Shared.pdb | Bin 0 -> 2532 bytes .../LINGYUN.ApiGateway.Domain.dll | Bin 0 -> 39424 bytes .../LINGYUN.ApiGateway.Domain.pdb | Bin 0 -> 16220 bytes ...N.ApiGateway.EntityFrameworkCore.deps.json | 1875 ++ ...LINGYUN.ApiGateway.EntityFrameworkCore.dll | Bin 0 -> 63488 bytes ...LINGYUN.ApiGateway.EntityFrameworkCore.pdb | Bin 0 -> 9372 bytes ...ateway.EntityFrameworkCore.AssemblyInfo.cs | 23 + ...tityFrameworkCore.AssemblyInfoInputs.cache | 1 + ...piGateway.EntityFrameworkCore.assets.cache | Bin 0 -> 44163 bytes ...ay.EntityFrameworkCore.csproj.CopyComplete | 0 ...yFrameworkCore.csproj.FileListAbsolute.txt | 26 + ...rameworkCore.csprojAssemblyReference.cache | Bin 0 -> 4115 bytes ...LINGYUN.ApiGateway.EntityFrameworkCore.dll | Bin 0 -> 63488 bytes ...LINGYUN.ApiGateway.EntityFrameworkCore.pdb | Bin 0 -> 9372 bytes ...way.EntityFrameworkCore.csproj.nuget.cache | 5 + ...tityFrameworkCore.csproj.nuget.dgspec.json | 219 + ...y.EntityFrameworkCore.csproj.nuget.g.props | 15 + ...EntityFrameworkCore.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4347 +++ .../obj/project.nuget.cache | 108 + .../LINGYUN.ApiGateway.HttpApi.Client.csproj | 16 + .../ApiGatewayHttpApiClientModule.cs | 23 + ...NGYUN.ApiGateway.Application.Contracts.dll | Bin 0 -> 38912 bytes ...NGYUN.ApiGateway.Application.Contracts.pdb | Bin 0 -> 13848 bytes .../LINGYUN.ApiGateway.Domain.Shared.dll | Bin 0 -> 15360 bytes .../LINGYUN.ApiGateway.Domain.Shared.pdb | Bin 0 -> 2532 bytes ...INGYUN.ApiGateway.HttpApi.Client.deps.json | 2376 ++ .../LINGYUN.ApiGateway.HttpApi.Client.dll | Bin 0 -> 5632 bytes .../LINGYUN.ApiGateway.HttpApi.Client.pdb | Bin 0 -> 920 bytes ....ApiGateway.HttpApi.Client.AssemblyInfo.cs | 23 + ...ay.HttpApi.Client.AssemblyInfoInputs.cache | 1 + ...YUN.ApiGateway.HttpApi.Client.assets.cache | Bin 0 -> 54165 bytes ...Gateway.HttpApi.Client.csproj.CopyComplete | 0 ...pApi.Client.csproj.CoreCompileInputs.cache | 1 + ...HttpApi.Client.csproj.FileListAbsolute.txt | 28 + ...tpApi.Client.csprojAssemblyReference.cache | Bin 0 -> 16846 bytes .../LINGYUN.ApiGateway.HttpApi.Client.dll | Bin 0 -> 5632 bytes .../LINGYUN.ApiGateway.HttpApi.Client.pdb | Bin 0 -> 920 bytes ...ay.HttpApi.Client.csproj.nuget.dgspec.json | 211 + ...ateway.HttpApi.Client.csproj.nuget.g.props | 15 + ...eway.HttpApi.Client.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 5666 ++++ .../obj/project.nuget.cache | 131 + .../LINGYUN.ApiGateway.HttpApi.csproj | 16 + .../ApiGateway/ApiGatewayControllerBase.cs | 13 + .../ApiGateway/ApiGatewayHttpApiModule.cs | 36 + .../Ocelot/AggregateReRouteController.cs | 33 + .../Ocelot/DynamicReRouteController.cs | 27 + .../Ocelot/GlobalConfigurationController.cs | 57 + .../ApiGateway/Ocelot/ReRouteController.cs | 72 + .../ApiGateway/Ocelot/RouteGroupController.cs | 57 + ...NGYUN.ApiGateway.Application.Contracts.dll | Bin 0 -> 38912 bytes ...NGYUN.ApiGateway.Application.Contracts.pdb | Bin 0 -> 13848 bytes .../LINGYUN.ApiGateway.Domain.Shared.dll | Bin 0 -> 15360 bytes .../LINGYUN.ApiGateway.Domain.Shared.pdb | Bin 0 -> 2532 bytes .../LINGYUN.ApiGateway.HttpApi.deps.json | 5430 ++++ .../LINGYUN.ApiGateway.HttpApi.dll | Bin 0 -> 26624 bytes .../LINGYUN.ApiGateway.HttpApi.pdb | Bin 0 -> 5008 bytes .../refs/Microsoft.AspNetCore.Antiforgery.dll | Bin 0 -> 16760 bytes ...AspNetCore.Authentication.Abstractions.dll | Bin 0 -> 22904 bytes ...soft.AspNetCore.Authentication.Cookies.dll | Bin 0 -> 22392 bytes ...crosoft.AspNetCore.Authentication.Core.dll | Bin 0 -> 17784 bytes ...rosoft.AspNetCore.Authentication.OAuth.dll | Bin 0 -> 23416 bytes .../Microsoft.AspNetCore.Authentication.dll | Bin 0 -> 29256 bytes ...rosoft.AspNetCore.Authorization.Policy.dll | Bin 0 -> 17272 bytes ...ft.AspNetCore.Components.Authorization.dll | Bin 0 -> 17784 bytes .../Microsoft.AspNetCore.Components.Forms.dll | Bin 0 -> 17784 bytes ...Microsoft.AspNetCore.Components.Server.dll | Bin 0 -> 18296 bytes .../Microsoft.AspNetCore.Components.Web.dll | Bin 0 -> 39800 bytes .../refs/Microsoft.AspNetCore.Components.dll | Bin 0 -> 36728 bytes ...ft.AspNetCore.Connections.Abstractions.dll | Bin 0 -> 32120 bytes .../Microsoft.AspNetCore.CookiePolicy.dll | Bin 0 -> 17784 bytes .../refs/Microsoft.AspNetCore.Cors.dll | Bin 0 -> 20856 bytes ...osoft.AspNetCore.Cryptography.Internal.dll | Bin 0 -> 14712 bytes ....AspNetCore.Cryptography.KeyDerivation.dll | Bin 0 -> 15224 bytes ...AspNetCore.DataProtection.Abstractions.dll | Bin 0 -> 15736 bytes ...t.AspNetCore.DataProtection.Extensions.dll | Bin 0 -> 16248 bytes .../Microsoft.AspNetCore.DataProtection.dll | Bin 0 -> 29048 bytes ...ft.AspNetCore.Diagnostics.Abstractions.dll | Bin 0 -> 17272 bytes ...ft.AspNetCore.Diagnostics.HealthChecks.dll | Bin 0 -> 17480 bytes .../refs/Microsoft.AspNetCore.Diagnostics.dll | Bin 0 -> 22904 bytes .../Microsoft.AspNetCore.HostFiltering.dll | Bin 0 -> 16456 bytes ...rosoft.AspNetCore.Hosting.Abstractions.dll | Bin 0 -> 21064 bytes ...AspNetCore.Hosting.Server.Abstractions.dll | Bin 0 -> 16248 bytes .../refs/Microsoft.AspNetCore.Hosting.dll | Bin 0 -> 22632 bytes ...Microsoft.AspNetCore.Html.Abstractions.dll | Bin 0 -> 16760 bytes ...Microsoft.AspNetCore.Http.Abstractions.dll | Bin 0 -> 43384 bytes ...oft.AspNetCore.Http.Connections.Common.dll | Bin 0 -> 17000 bytes .../Microsoft.AspNetCore.Http.Connections.dll | Bin 0 -> 20552 bytes .../Microsoft.AspNetCore.Http.Extensions.dll | Bin 0 -> 21880 bytes .../Microsoft.AspNetCore.Http.Features.dll | Bin 0 -> 26488 bytes .../refs/Microsoft.AspNetCore.Http.dll | Bin 0 -> 31608 bytes .../Microsoft.AspNetCore.HttpOverrides.dll | Bin 0 -> 19528 bytes .../refs/Microsoft.AspNetCore.HttpsPolicy.dll | Bin 0 -> 17272 bytes .../refs/Microsoft.AspNetCore.Identity.dll | Bin 0 -> 25672 bytes ...rosoft.AspNetCore.Localization.Routing.dll | Bin 0 -> 15224 bytes .../Microsoft.AspNetCore.Localization.dll | Bin 0 -> 19832 bytes .../Microsoft.AspNetCore.Mvc.Abstractions.dll | Bin 0 -> 56904 bytes .../Microsoft.AspNetCore.Mvc.ApiExplorer.dll | Bin 0 -> 17480 bytes .../refs/Microsoft.AspNetCore.Mvc.Core.dll | Bin 0 -> 145784 bytes .../refs/Microsoft.AspNetCore.Mvc.Cors.dll | Bin 0 -> 16456 bytes ...crosoft.AspNetCore.Mvc.DataAnnotations.dll | Bin 0 -> 18536 bytes ...crosoft.AspNetCore.Mvc.Formatters.Json.dll | Bin 0 -> 14920 bytes ...icrosoft.AspNetCore.Mvc.Formatters.Xml.dll | Bin 0 -> 22904 bytes .../Microsoft.AspNetCore.Mvc.Localization.dll | Bin 0 -> 20040 bytes .../refs/Microsoft.AspNetCore.Mvc.Razor.dll | Bin 0 -> 35400 bytes .../Microsoft.AspNetCore.Mvc.RazorPages.dll | Bin 0 -> 51576 bytes .../Microsoft.AspNetCore.Mvc.TagHelpers.dll | Bin 0 -> 43896 bytes .../Microsoft.AspNetCore.Mvc.ViewFeatures.dll | Bin 0 -> 75640 bytes .../refs/Microsoft.AspNetCore.Mvc.dll | Bin 0 -> 15944 bytes .../Microsoft.AspNetCore.Razor.Runtime.dll | Bin 0 -> 19320 bytes .../refs/Microsoft.AspNetCore.Razor.dll | Bin 0 -> 24680 bytes ...spNetCore.ResponseCaching.Abstractions.dll | Bin 0 -> 15224 bytes .../Microsoft.AspNetCore.ResponseCaching.dll | Bin 0 -> 16760 bytes ...crosoft.AspNetCore.ResponseCompression.dll | Bin 0 -> 18808 bytes .../refs/Microsoft.AspNetCore.Rewrite.dll | Bin 0 -> 18296 bytes ...rosoft.AspNetCore.Routing.Abstractions.dll | Bin 0 -> 18808 bytes .../refs/Microsoft.AspNetCore.Routing.dll | Bin 0 -> 46456 bytes .../Microsoft.AspNetCore.Server.HttpSys.dll | Bin 0 -> 19832 bytes .../refs/Microsoft.AspNetCore.Server.IIS.dll | Bin 0 -> 21368 bytes ...osoft.AspNetCore.Server.IISIntegration.dll | Bin 0 -> 16760 bytes ...crosoft.AspNetCore.Server.Kestrel.Core.dll | Bin 0 -> 27720 bytes ...tCore.Server.Kestrel.Transport.Sockets.dll | Bin 0 -> 16760 bytes .../Microsoft.AspNetCore.Server.Kestrel.dll | Bin 0 -> 15224 bytes .../refs/Microsoft.AspNetCore.Session.dll | Bin 0 -> 17784 bytes .../Microsoft.AspNetCore.SignalR.Common.dll | Bin 0 -> 19832 bytes .../Microsoft.AspNetCore.SignalR.Core.dll | Bin 0 -> 30072 bytes ...soft.AspNetCore.SignalR.Protocols.Json.dll | Bin 0 -> 16248 bytes .../refs/Microsoft.AspNetCore.SignalR.dll | Bin 0 -> 16760 bytes .../refs/Microsoft.AspNetCore.StaticFiles.dll | Bin 0 -> 20856 bytes .../refs/Microsoft.AspNetCore.WebSockets.dll | Bin 0 -> 16760 bytes .../Microsoft.AspNetCore.WebUtilities.dll | Bin 0 -> 23928 bytes .../refs/Microsoft.AspNetCore.dll | Bin 0 -> 15224 bytes .../netcoreapp3.1/refs/Microsoft.CSharp.dll | Bin 0 -> 16488 bytes ...rosoft.Extensions.Caching.Abstractions.dll | Bin 0 -> 20344 bytes .../Microsoft.Extensions.Caching.Memory.dll | Bin 0 -> 17272 bytes ...Microsoft.Extensions.Configuration.Ini.dll | Bin 0 -> 15736 bytes ...ft.Extensions.Configuration.KeyPerFile.dll | Bin 0 -> 15736 bytes ...Microsoft.Extensions.Configuration.Xml.dll | Bin 0 -> 16248 bytes ....Diagnostics.HealthChecks.Abstractions.dll | Bin 0 -> 17272 bytes ...ft.Extensions.Diagnostics.HealthChecks.dll | Bin 0 -> 17784 bytes ...soft.Extensions.FileProviders.Embedded.dll | Bin 0 -> 15736 bytes .../refs/Microsoft.Extensions.Hosting.dll | Bin 0 -> 18808 bytes .../refs/Microsoft.Extensions.Http.dll | Bin 0 -> 18808 bytes .../Microsoft.Extensions.Identity.Core.dll | Bin 0 -> 42360 bytes .../Microsoft.Extensions.Identity.Stores.dll | Bin 0 -> 27000 bytes ...osoft.Extensions.Logging.Configuration.dll | Bin 0 -> 15736 bytes .../Microsoft.Extensions.Logging.Console.dll | Bin 0 -> 15736 bytes .../Microsoft.Extensions.Logging.Debug.dll | Bin 0 -> 14712 bytes .../Microsoft.Extensions.Logging.EventLog.dll | Bin 0 -> 15736 bytes ...crosoft.Extensions.Logging.EventSource.dll | Bin 0 -> 15224 bytes ...crosoft.Extensions.Logging.TraceSource.dll | Bin 0 -> 15224 bytes .../refs/Microsoft.Extensions.ObjectPool.dll | Bin 0 -> 16248 bytes ...oft.Extensions.Options.DataAnnotations.dll | Bin 0 -> 14712 bytes .../refs/Microsoft.Extensions.WebEncoders.dll | Bin 0 -> 16760 bytes .../refs/Microsoft.JSInterop.dll | Bin 0 -> 17784 bytes .../refs/Microsoft.Net.Http.Headers.dll | Bin 0 -> 27512 bytes .../refs/Microsoft.VisualBasic.Core.dll | Bin 0 -> 52296 bytes .../refs/Microsoft.VisualBasic.dll | Bin 0 -> 16456 bytes .../refs/Microsoft.Win32.Primitives.dll | Bin 0 -> 14920 bytes .../refs/Microsoft.Win32.Registry.dll | Bin 0 -> 20040 bytes .../netcoreapp3.1/refs/System.AppContext.dll | Bin 0 -> 14408 bytes .../netcoreapp3.1/refs/System.Buffers.dll | Bin 0 -> 15224 bytes .../refs/System.Collections.Concurrent.dll | Bin 0 -> 26184 bytes .../refs/System.Collections.Immutable.dll | Bin 0 -> 59976 bytes .../refs/System.Collections.NonGeneric.dll | Bin 0 -> 21576 bytes .../refs/System.Collections.Specialized.dll | Bin 0 -> 23112 bytes .../netcoreapp3.1/refs/System.Collections.dll | Bin 0 -> 42056 bytes .../System.ComponentModel.Annotations.dll | Bin 0 -> 27208 bytes .../System.ComponentModel.DataAnnotations.dll | Bin 0 -> 15224 bytes .../System.ComponentModel.EventBasedAsync.dll | Bin 0 -> 17992 bytes .../refs/System.ComponentModel.Primitives.dll | Bin 0 -> 22088 bytes .../System.ComponentModel.TypeConverter.dll | Bin 0 -> 90696 bytes .../refs/System.ComponentModel.dll | Bin 0 -> 14952 bytes .../refs/System.Configuration.dll | Bin 0 -> 17992 bytes .../netcoreapp3.1/refs/System.Console.dll | Bin 0 -> 23624 bytes .../Debug/netcoreapp3.1/refs/System.Core.dll | Bin 0 -> 22088 bytes .../netcoreapp3.1/refs/System.Data.Common.dll | Bin 0 -> 130120 bytes .../refs/System.Data.DataSetExtensions.dll | Bin 0 -> 14408 bytes .../Debug/netcoreapp3.1/refs/System.Data.dll | Bin 0 -> 22600 bytes .../refs/System.Diagnostics.Contracts.dll | Bin 0 -> 19528 bytes .../refs/System.Diagnostics.Debug.dll | Bin 0 -> 19528 bytes .../System.Diagnostics.DiagnosticSource.dll | Bin 0 -> 18808 bytes .../refs/System.Diagnostics.EventLog.dll | Bin 0 -> 34168 bytes .../System.Diagnostics.FileVersionInfo.dll | Bin 0 -> 15976 bytes .../refs/System.Diagnostics.Process.dll | Bin 0 -> 27208 bytes .../refs/System.Diagnostics.StackTrace.dll | Bin 0 -> 22088 bytes ...em.Diagnostics.TextWriterTraceListener.dll | Bin 0 -> 16456 bytes .../refs/System.Diagnostics.Tools.dll | Bin 0 -> 15944 bytes .../refs/System.Diagnostics.TraceSource.dll | Bin 0 -> 25160 bytes .../refs/System.Diagnostics.Tracing.dll | Bin 0 -> 26184 bytes .../refs/System.Drawing.Primitives.dll | Bin 0 -> 32360 bytes .../netcoreapp3.1/refs/System.Drawing.dll | Bin 0 -> 19560 bytes .../refs/System.Dynamic.Runtime.dll | Bin 0 -> 15432 bytes .../refs/System.Globalization.Calendars.dll | Bin 0 -> 14920 bytes .../refs/System.Globalization.Extensions.dll | Bin 0 -> 14408 bytes .../refs/System.Globalization.dll | Bin 0 -> 14408 bytes .../refs/System.IO.Compression.Brotli.dll | Bin 0 -> 16456 bytes .../refs/System.IO.Compression.FileSystem.dll | Bin 0 -> 13896 bytes .../refs/System.IO.Compression.ZipFile.dll | Bin 0 -> 15432 bytes .../refs/System.IO.Compression.dll | Bin 0 -> 18504 bytes .../refs/System.IO.FileSystem.DriveInfo.dll | Bin 0 -> 15432 bytes .../refs/System.IO.FileSystem.Primitives.dll | Bin 0 -> 14408 bytes .../refs/System.IO.FileSystem.Watcher.dll | Bin 0 -> 18296 bytes .../refs/System.IO.FileSystem.dll | Bin 0 -> 27240 bytes .../refs/System.IO.IsolatedStorage.dll | Bin 0 -> 21064 bytes .../refs/System.IO.MemoryMappedFiles.dll | Bin 0 -> 17480 bytes .../refs/System.IO.Pipelines.dll | Bin 0 -> 19016 bytes .../netcoreapp3.1/refs/System.IO.Pipes.dll | Bin 0 -> 20040 bytes .../refs/System.IO.UnmanagedMemoryStream.dll | Bin 0 -> 14408 bytes .../Debug/netcoreapp3.1/refs/System.IO.dll | Bin 0 -> 14920 bytes .../refs/System.Linq.Expressions.dll | Bin 0 -> 57448 bytes .../refs/System.Linq.Parallel.dll | Bin 0 -> 28744 bytes .../refs/System.Linq.Queryable.dll | Bin 0 -> 24440 bytes .../Debug/netcoreapp3.1/refs/System.Linq.dll | Bin 0 -> 26696 bytes .../netcoreapp3.1/refs/System.Memory.dll | Bin 0 -> 38776 bytes .../netcoreapp3.1/refs/System.Net.Http.dll | Bin 0 -> 41544 bytes .../refs/System.Net.HttpListener.dll | Bin 0 -> 22904 bytes .../netcoreapp3.1/refs/System.Net.Mail.dll | Bin 0 -> 27512 bytes .../refs/System.Net.NameResolution.dll | Bin 0 -> 16456 bytes .../refs/System.Net.NetworkInformation.dll | Bin 0 -> 30792 bytes .../netcoreapp3.1/refs/System.Net.Ping.dll | Bin 0 -> 17992 bytes .../refs/System.Net.Primitives.dll | Bin 0 -> 30792 bytes .../refs/System.Net.Requests.dll | Bin 0 -> 34376 bytes .../refs/System.Net.Security.dll | Bin 0 -> 44616 bytes .../refs/System.Net.ServicePoint.dll | Bin 0 -> 18296 bytes .../netcoreapp3.1/refs/System.Net.Sockets.dll | Bin 0 -> 39288 bytes .../refs/System.Net.WebClient.dll | Bin 0 -> 25464 bytes .../refs/System.Net.WebHeaderCollection.dll | Bin 0 -> 17784 bytes .../refs/System.Net.WebProxy.dll | Bin 0 -> 16248 bytes .../refs/System.Net.WebSockets.Client.dll | Bin 0 -> 16760 bytes .../refs/System.Net.WebSockets.dll | Bin 0 -> 19320 bytes .../Debug/netcoreapp3.1/refs/System.Net.dll | Bin 0 -> 15976 bytes .../refs/System.Numerics.Vectors.dll | Bin 0 -> 33864 bytes .../netcoreapp3.1/refs/System.Numerics.dll | Bin 0 -> 14408 bytes .../netcoreapp3.1/refs/System.ObjectModel.dll | Bin 0 -> 27512 bytes .../refs/System.Reflection.DispatchProxy.dll | Bin 0 -> 14408 bytes .../System.Reflection.Emit.ILGeneration.dll | Bin 0 -> 20040 bytes .../System.Reflection.Emit.Lightweight.dll | Bin 0 -> 18296 bytes .../refs/System.Reflection.Emit.dll | Bin 0 -> 36728 bytes .../refs/System.Reflection.Extensions.dll | Bin 0 -> 14200 bytes .../refs/System.Reflection.Metadata.dll | Bin 0 -> 115272 bytes .../refs/System.Reflection.Primitives.dll | Bin 0 -> 21576 bytes .../refs/System.Reflection.TypeExtensions.dll | Bin 0 -> 17480 bytes .../netcoreapp3.1/refs/System.Reflection.dll | Bin 0 -> 15432 bytes .../refs/System.Resources.Reader.dll | Bin 0 -> 14408 bytes .../refs/System.Resources.ResourceManager.dll | Bin 0 -> 19016 bytes .../refs/System.Resources.Writer.dll | Bin 0 -> 14920 bytes ...System.Runtime.CompilerServices.Unsafe.dll | Bin 0 -> 16456 bytes ...ystem.Runtime.CompilerServices.VisualC.dll | Bin 0 -> 15944 bytes .../refs/System.Runtime.Extensions.dll | Bin 0 -> 80968 bytes .../refs/System.Runtime.Handles.dll | Bin 0 -> 14408 bytes ...ime.InteropServices.RuntimeInformation.dll | Bin 0 -> 15432 bytes ...Runtime.InteropServices.WindowsRuntime.dll | Bin 0 -> 17480 bytes .../refs/System.Runtime.InteropServices.dll | Bin 0 -> 63560 bytes .../refs/System.Runtime.Intrinsics.dll | Bin 0 -> 75128 bytes .../refs/System.Runtime.Loader.dll | Bin 0 -> 17992 bytes .../refs/System.Runtime.Numerics.dll | Bin 0 -> 22088 bytes ...ystem.Runtime.Serialization.Formatters.dll | Bin 0 -> 21064 bytes .../System.Runtime.Serialization.Json.dll | Bin 0 -> 18504 bytes ...ystem.Runtime.Serialization.Primitives.dll | Bin 0 -> 17992 bytes .../refs/System.Runtime.Serialization.Xml.dll | Bin 0 -> 32840 bytes .../refs/System.Runtime.Serialization.dll | Bin 0 -> 15944 bytes .../netcoreapp3.1/refs/System.Runtime.dll | Bin 0 -> 330824 bytes .../refs/System.Security.AccessControl.dll | Bin 0 -> 33352 bytes .../refs/System.Security.Claims.dll | Bin 0 -> 30280 bytes ...ystem.Security.Cryptography.Algorithms.dll | Bin 0 -> 36424 bytes .../refs/System.Security.Cryptography.Cng.dll | Bin 0 -> 27720 bytes .../refs/System.Security.Cryptography.Csp.dll | Bin 0 -> 24648 bytes .../System.Security.Cryptography.Encoding.dll | Bin 0 -> 18504 bytes ...ystem.Security.Cryptography.Primitives.dll | Bin 0 -> 22600 bytes ...Security.Cryptography.X509Certificates.dll | Bin 0 -> 34888 bytes .../refs/System.Security.Cryptography.Xml.dll | Bin 0 -> 36216 bytes .../refs/System.Security.Permissions.dll | Bin 0 -> 72056 bytes .../System.Security.Principal.Windows.dll | Bin 0 -> 24952 bytes .../refs/System.Security.Principal.dll | Bin 0 -> 15432 bytes .../refs/System.Security.SecureString.dll | Bin 0 -> 14408 bytes .../netcoreapp3.1/refs/System.Security.dll | Bin 0 -> 16968 bytes .../refs/System.ServiceModel.Web.dll | Bin 0 -> 15224 bytes .../refs/System.ServiceProcess.dll | Bin 0 -> 14920 bytes .../refs/System.Text.Encoding.CodePages.dll | Bin 0 -> 14408 bytes .../refs/System.Text.Encoding.Extensions.dll | Bin 0 -> 19528 bytes .../refs/System.Text.Encoding.dll | Bin 0 -> 14952 bytes .../refs/System.Text.Encodings.Web.dll | Bin 0 -> 24952 bytes .../refs/System.Text.RegularExpressions.dll | Bin 0 -> 28744 bytes .../refs/System.Threading.Channels.dll | Bin 0 -> 16760 bytes .../refs/System.Threading.Overlapped.dll | Bin 0 -> 17992 bytes .../refs/System.Threading.Tasks.Dataflow.dll | Bin 0 -> 29256 bytes .../System.Threading.Tasks.Extensions.dll | Bin 0 -> 14712 bytes .../refs/System.Threading.Tasks.Parallel.dll | Bin 0 -> 17992 bytes .../refs/System.Threading.Tasks.dll | Bin 0 -> 21096 bytes .../refs/System.Threading.Thread.dll | Bin 0 -> 22088 bytes .../refs/System.Threading.ThreadPool.dll | Bin 0 -> 17480 bytes .../refs/System.Threading.Timer.dll | Bin 0 -> 15976 bytes .../netcoreapp3.1/refs/System.Threading.dll | Bin 0 -> 30280 bytes .../refs/System.Transactions.Local.dll | Bin 0 -> 22904 bytes .../refs/System.Transactions.dll | Bin 0 -> 15432 bytes .../netcoreapp3.1/refs/System.ValueTuple.dll | Bin 0 -> 14200 bytes .../refs/System.Web.HttpUtility.dll | Bin 0 -> 15736 bytes .../Debug/netcoreapp3.1/refs/System.Web.dll | Bin 0 -> 13896 bytes .../refs/System.Windows.Extensions.dll | Bin 0 -> 19320 bytes .../netcoreapp3.1/refs/System.Windows.dll | Bin 0 -> 14440 bytes .../netcoreapp3.1/refs/System.Xml.Linq.dll | Bin 0 -> 14920 bytes .../refs/System.Xml.ReaderWriter.dll | Bin 0 -> 106056 bytes .../refs/System.Xml.Serialization.dll | Bin 0 -> 14920 bytes .../refs/System.Xml.XDocument.dll | Bin 0 -> 30792 bytes .../refs/System.Xml.XPath.XDocument.dll | Bin 0 -> 15432 bytes .../netcoreapp3.1/refs/System.Xml.XPath.dll | Bin 0 -> 15432 bytes .../refs/System.Xml.XmlDocument.dll | Bin 0 -> 14952 bytes .../refs/System.Xml.XmlSerializer.dll | Bin 0 -> 45160 bytes .../Debug/netcoreapp3.1/refs/System.Xml.dll | Bin 0 -> 22600 bytes .../bin/Debug/netcoreapp3.1/refs/System.dll | Bin 0 -> 48712 bytes .../Debug/netcoreapp3.1/refs/WindowsBase.dll | Bin 0 -> 15224 bytes .../bin/Debug/netcoreapp3.1/refs/mscorlib.dll | Bin 0 -> 55880 bytes .../Debug/netcoreapp3.1/refs/netstandard.dll | Bin 0 -> 99704 bytes ...LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs | 23 + ...piGateway.HttpApi.AssemblyInfoInputs.cache | 1 + .../LINGYUN.ApiGateway.HttpApi.assets.cache | Bin 0 -> 58025 bytes ...YUN.ApiGateway.HttpApi.csproj.CopyComplete | 0 ...ateway.HttpApi.csproj.FileListAbsolute.txt | 540 + ...eway.HttpApi.csprojAssemblyReference.cache | Bin 0 -> 11901 bytes .../LINGYUN.ApiGateway.HttpApi.dll | Bin 0 -> 26624 bytes .../LINGYUN.ApiGateway.HttpApi.pdb | Bin 0 -> 5008 bytes ...LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs | 23 + ...piGateway.HttpApi.AssemblyInfoInputs.cache | 1 + .../LINGYUN.ApiGateway.HttpApi.assets.cache | Bin 0 -> 292 bytes ...eway.HttpApi.csprojAssemblyReference.cache | Bin 0 -> 83613 bytes ...GYUN.ApiGateway.HttpApi.csproj.nuget.cache | 5 + ...piGateway.HttpApi.csproj.nuget.dgspec.json | 210 + ...UN.ApiGateway.HttpApi.csproj.nuget.g.props | 27 + ....ApiGateway.HttpApi.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4743 ++++ .../obj/project.nuget.cache | 121 + ...ionManagement.Application.Contracts.csproj | 17 + ...Management.Application.Contracts.deps.json | 1786 ++ ...issionManagement.Application.Contracts.dll | Bin 0 -> 4608 bytes ...issionManagement.Application.Contracts.pdb | Bin 0 -> 548 bytes ...ment.Application.Contracts.AssemblyInfo.cs | 23 + ...ication.Contracts.AssemblyInfoInputs.cache | 1 + ...agement.Application.Contracts.assets.cache | Bin 0 -> 42091 bytes ...n.Contracts.csproj.CoreCompileInputs.cache | 1 + ...tion.Contracts.csproj.FileListAbsolute.txt | 9 + ...on.Contracts.csprojAssemblyReference.cache | Bin 0 -> 424 bytes ...issionManagement.Application.Contracts.dll | Bin 0 -> 4608 bytes ...issionManagement.Application.Contracts.pdb | Bin 0 -> 548 bytes ...ication.Contracts.csproj.nuget.dgspec.json | 77 + ...Application.Contracts.csproj.nuget.g.props | 15 + ...plication.Contracts.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4174 +++ .../obj/project.nuget.cache | 104 + ...bp.PermissionManagement.Application.csproj | 13 + ...bpPermissionManagementApplicationModule.cs | 13 + .../PermissionAppService.cs | 157 + ...PermissionManagement.Application.deps.json | 1911 ++ ...N.Abp.PermissionManagement.Application.dll | Bin 0 -> 16896 bytes ...N.Abp.PermissionManagement.Application.pdb | Bin 0 -> 2932 bytes ...sionManagement.Application.AssemblyInfo.cs | 23 + ...ement.Application.AssemblyInfoInputs.cache | 1 + ...missionManagement.Application.assets.cache | Bin 0 -> 45357 bytes ...nt.Application.csproj.FileListAbsolute.txt | 16 + ....Application.csprojAssemblyReference.cache | Bin 0 -> 424 bytes ...N.Abp.PermissionManagement.Application.dll | Bin 0 -> 16896 bytes ...N.Abp.PermissionManagement.Application.pdb | Bin 0 -> 2932 bytes ...nManagement.Application.csproj.nuget.cache | 5 + ...ement.Application.csproj.nuget.dgspec.json | 77 + ...anagement.Application.csproj.nuget.g.props | 15 + ...agement.Application.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4347 +++ .../obj/project.nuget.cache | 110 + .../Class1.cs | 8 + ...YUN.Abp.PermissionManagement.Domain.csproj | 12 + .../PermissionManagementProvider.cs | 20 + ...ermissionManagement.Domain.AssemblyInfo.cs | 23 + ...Management.Domain.AssemblyInfoInputs.cache | 1 + ...p.PermissionManagement.Domain.assets.cache | Bin 0 -> 42762 bytes ...Management.Domain.csproj.nuget.dgspec.json | 73 + ...sionManagement.Domain.csproj.nuget.g.props | 15 + ...onManagement.Domain.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4198 +++ .../obj/project.nuget.cache | 105 + ...ingManagement.Application.Contracts.csproj | 25 + ...ingManagementApplicationContractsModule.cs | 29 + .../AbpSettingManagementPermissionProvider.cs | 25 + .../AbpSettingManagementPermissions.cs | 14 + ...AbpSettingManagementRemoteServiceConsts.cs | 7 + .../Dto/AccountSettingsDto.cs | 14 + .../Dto/IdentitySettingsDto.cs | 83 + .../Dto/LocalizationSettingsDto.cs | 10 + .../Abp/SettingManagement/Dto/SettingDto.cs | 15 + .../SettingManagement/Dto/UpdateSettingDto.cs | 8 + .../Dto/UpdateSettingsDto.cs | 11 + .../SettingManagement/ISettingAppService.cs | 14 + .../Localization/ApplicationContracts/en.json | 8 + .../ApplicationContracts/zh-CN.json | 8 + .../ApplicationContracts/zh-Hans.json | 8 + ...Management.Application.Contracts.deps.json | 1786 ++ ...ettingManagement.Application.Contracts.dll | Bin 0 -> 14848 bytes ...ettingManagement.Application.Contracts.pdb | Bin 0 -> 4120 bytes ...Management.Application.Contracts.deps.json | 1786 ++ ...ettingManagement.Application.Contracts.dll | Bin 0 -> 10752 bytes ...ettingManagement.Application.Contracts.pdb | Bin 0 -> 2688 bytes ...ment.Application.Contracts.AssemblyInfo.cs | 23 + ...ication.Contracts.AssemblyInfoInputs.cache | 1 + ...agement.Application.Contracts.assets.cache | Bin 0 -> 42067 bytes ...n.Contracts.csproj.CoreCompileInputs.cache | 1 + ...tion.Contracts.csproj.FileListAbsolute.txt | 9 + ...on.Contracts.csprojAssemblyReference.cache | Bin 0 -> 9830 bytes ...ettingManagement.Application.Contracts.dll | Bin 0 -> 14848 bytes ...ettingManagement.Application.Contracts.pdb | Bin 0 -> 4120 bytes ...ment.Application.Contracts.AssemblyInfo.cs | 23 + ...ication.Contracts.AssemblyInfoInputs.cache | 1 + ...agement.Application.Contracts.assets.cache | Bin 0 -> 42067 bytes ...tion.Contracts.csproj.FileListAbsolute.txt | 8 + ...on.Contracts.csprojAssemblyReference.cache | Bin 0 -> 146141 bytes ...ettingManagement.Application.Contracts.dll | Bin 0 -> 10752 bytes ...ettingManagement.Application.Contracts.pdb | Bin 0 -> 2688 bytes ...t.Application.Contracts.csproj.nuget.cache | 5 + ...ication.Contracts.csproj.nuget.dgspec.json | 77 + ...Application.Contracts.csproj.nuget.g.props | 15 + ...plication.Contracts.csproj.nuget.g.targets | 9 + ...t.Application.Contracts.csproj.nuget.cache | 5 + ...ication.Contracts.csproj.nuget.dgspec.json | 77 + ...Application.Contracts.csproj.nuget.g.props | 15 + ...plication.Contracts.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4174 +++ .../obj/project.nuget.cache | 104 + ...N.Abp.SettingManagement.Application.csproj | 15 + .../AbpSettingManagementApplicationModule.cs | 13 + .../SettingManagement/SettingAppService.cs | 61 + ...ettingManagement.Application.Contracts.dll | Bin 0 -> 14848 bytes ...ettingManagement.Application.Contracts.pdb | Bin 0 -> 4120 bytes ...bp.SettingManagement.Application.deps.json | 1903 ++ ...GYUN.Abp.SettingManagement.Application.dll | Bin 0 -> 10752 bytes ...GYUN.Abp.SettingManagement.Application.pdb | Bin 0 -> 1872 bytes ...ettingManagement.Application.Contracts.dll | Bin 0 -> 10752 bytes ...ettingManagement.Application.Contracts.pdb | Bin 0 -> 2688 bytes ...bp.SettingManagement.Application.deps.json | 1903 ++ ...olin.Abp.SettingManagement.Application.dll | Bin 0 -> 10752 bytes ...olin.Abp.SettingManagement.Application.pdb | Bin 0 -> 1884 bytes ...tingManagement.Application.AssemblyInfo.cs | 23 + ...ement.Application.AssemblyInfoInputs.cache | 1 + ...SettingManagement.Application.assets.cache | Bin 0 -> 44624 bytes ...Management.Application.csproj.CopyComplete | 0 ...Application.csproj.CoreCompileInputs.cache | 1 + ...nt.Application.csproj.FileListAbsolute.txt | 12 + ....Application.csprojAssemblyReference.cache | Bin 0 -> 17957 bytes ...GYUN.Abp.SettingManagement.Application.dll | Bin 0 -> 10752 bytes ...GYUN.Abp.SettingManagement.Application.pdb | Bin 0 -> 1872 bytes ...tingManagement.Application.AssemblyInfo.cs | 23 + ...ement.Application.AssemblyInfoInputs.cache | 1 + ...SettingManagement.Application.assets.cache | Bin 0 -> 44624 bytes ...Management.Application.csproj.CopyComplete | 0 ...nt.Application.csproj.FileListAbsolute.txt | 11 + ....Application.csprojAssemblyReference.cache | Bin 0 -> 115253 bytes ...olin.Abp.SettingManagement.Application.dll | Bin 0 -> 10752 bytes ...olin.Abp.SettingManagement.Application.pdb | Bin 0 -> 1884 bytes ...gManagement.Application.csproj.nuget.cache | 5 + ...ement.Application.csproj.nuget.dgspec.json | 146 + ...anagement.Application.csproj.nuget.g.props | 15 + ...agement.Application.csproj.nuget.g.targets | 9 + ...gManagement.Application.csproj.nuget.cache | 5 + ...ement.Application.csproj.nuget.dgspec.json | 146 + ...anagement.Application.csproj.nuget.g.props | 15 + ...agement.Application.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4337 +++ .../obj/project.nuget.cache | 109 + ...NGYUN.Abp.SettingManagement.HttpApi.csproj | 15 + .../AbpSettingManagementHttpApiModule.cs | 36 + .../SettingManagement/SettingController.cs | 30 + ...ettingManagement.Application.Contracts.dll | Bin 0 -> 14848 bytes ...ettingManagement.Application.Contracts.pdb | Bin 0 -> 4120 bytes ...GYUN.Abp.SettingManagement.Application.dll | Bin 0 -> 10752 bytes ...GYUN.Abp.SettingManagement.Application.pdb | Bin 0 -> 1872 bytes ...UN.Abp.SettingManagement.HttpApi.deps.json | 5547 ++++ .../LINGYUN.Abp.SettingManagement.HttpApi.dll | Bin 0 -> 9728 bytes .../LINGYUN.Abp.SettingManagement.HttpApi.pdb | Bin 0 -> 1780 bytes ...ettingManagement.Application.Contracts.dll | Bin 0 -> 10752 bytes ...ettingManagement.Application.Contracts.pdb | Bin 0 -> 2688 bytes ...olin.Abp.SettingManagement.Application.dll | Bin 0 -> 10752 bytes ...olin.Abp.SettingManagement.Application.pdb | Bin 0 -> 1884 bytes ...in.Abp.SettingManagement.HttpApi.deps.json | 5547 ++++ ...lticolin.Abp.SettingManagement.HttpApi.dll | Bin 0 -> 9728 bytes ...lticolin.Abp.SettingManagement.HttpApi.pdb | Bin 0 -> 1788 bytes .../refs/Microsoft.AspNetCore.Antiforgery.dll | Bin 0 -> 16760 bytes ...AspNetCore.Authentication.Abstractions.dll | Bin 0 -> 22904 bytes ...soft.AspNetCore.Authentication.Cookies.dll | Bin 0 -> 22392 bytes ...crosoft.AspNetCore.Authentication.Core.dll | Bin 0 -> 17784 bytes ...rosoft.AspNetCore.Authentication.OAuth.dll | Bin 0 -> 23416 bytes .../Microsoft.AspNetCore.Authentication.dll | Bin 0 -> 29256 bytes ...rosoft.AspNetCore.Authorization.Policy.dll | Bin 0 -> 17272 bytes ...ft.AspNetCore.Components.Authorization.dll | Bin 0 -> 17784 bytes .../Microsoft.AspNetCore.Components.Forms.dll | Bin 0 -> 17784 bytes ...Microsoft.AspNetCore.Components.Server.dll | Bin 0 -> 18296 bytes .../Microsoft.AspNetCore.Components.Web.dll | Bin 0 -> 39800 bytes .../refs/Microsoft.AspNetCore.Components.dll | Bin 0 -> 36728 bytes ...ft.AspNetCore.Connections.Abstractions.dll | Bin 0 -> 32120 bytes .../Microsoft.AspNetCore.CookiePolicy.dll | Bin 0 -> 17784 bytes .../refs/Microsoft.AspNetCore.Cors.dll | Bin 0 -> 20856 bytes ...osoft.AspNetCore.Cryptography.Internal.dll | Bin 0 -> 14712 bytes ....AspNetCore.Cryptography.KeyDerivation.dll | Bin 0 -> 15224 bytes ...AspNetCore.DataProtection.Abstractions.dll | Bin 0 -> 15736 bytes ...t.AspNetCore.DataProtection.Extensions.dll | Bin 0 -> 16248 bytes .../Microsoft.AspNetCore.DataProtection.dll | Bin 0 -> 29048 bytes ...ft.AspNetCore.Diagnostics.Abstractions.dll | Bin 0 -> 17272 bytes ...ft.AspNetCore.Diagnostics.HealthChecks.dll | Bin 0 -> 17480 bytes .../refs/Microsoft.AspNetCore.Diagnostics.dll | Bin 0 -> 22904 bytes .../Microsoft.AspNetCore.HostFiltering.dll | Bin 0 -> 16456 bytes ...rosoft.AspNetCore.Hosting.Abstractions.dll | Bin 0 -> 21064 bytes ...AspNetCore.Hosting.Server.Abstractions.dll | Bin 0 -> 16248 bytes .../refs/Microsoft.AspNetCore.Hosting.dll | Bin 0 -> 22632 bytes ...Microsoft.AspNetCore.Html.Abstractions.dll | Bin 0 -> 16760 bytes ...Microsoft.AspNetCore.Http.Abstractions.dll | Bin 0 -> 43384 bytes ...oft.AspNetCore.Http.Connections.Common.dll | Bin 0 -> 17000 bytes .../Microsoft.AspNetCore.Http.Connections.dll | Bin 0 -> 20552 bytes .../Microsoft.AspNetCore.Http.Extensions.dll | Bin 0 -> 21880 bytes .../Microsoft.AspNetCore.Http.Features.dll | Bin 0 -> 26488 bytes .../refs/Microsoft.AspNetCore.Http.dll | Bin 0 -> 31608 bytes .../Microsoft.AspNetCore.HttpOverrides.dll | Bin 0 -> 19528 bytes .../refs/Microsoft.AspNetCore.HttpsPolicy.dll | Bin 0 -> 17272 bytes .../refs/Microsoft.AspNetCore.Identity.dll | Bin 0 -> 25672 bytes ...rosoft.AspNetCore.Localization.Routing.dll | Bin 0 -> 15224 bytes .../Microsoft.AspNetCore.Localization.dll | Bin 0 -> 19832 bytes .../Microsoft.AspNetCore.Mvc.Abstractions.dll | Bin 0 -> 56904 bytes .../Microsoft.AspNetCore.Mvc.ApiExplorer.dll | Bin 0 -> 17480 bytes .../refs/Microsoft.AspNetCore.Mvc.Core.dll | Bin 0 -> 145784 bytes .../refs/Microsoft.AspNetCore.Mvc.Cors.dll | Bin 0 -> 16456 bytes ...crosoft.AspNetCore.Mvc.DataAnnotations.dll | Bin 0 -> 18536 bytes ...crosoft.AspNetCore.Mvc.Formatters.Json.dll | Bin 0 -> 14920 bytes ...icrosoft.AspNetCore.Mvc.Formatters.Xml.dll | Bin 0 -> 22904 bytes .../Microsoft.AspNetCore.Mvc.Localization.dll | Bin 0 -> 20040 bytes .../refs/Microsoft.AspNetCore.Mvc.Razor.dll | Bin 0 -> 35400 bytes .../Microsoft.AspNetCore.Mvc.RazorPages.dll | Bin 0 -> 51576 bytes .../Microsoft.AspNetCore.Mvc.TagHelpers.dll | Bin 0 -> 43896 bytes .../Microsoft.AspNetCore.Mvc.ViewFeatures.dll | Bin 0 -> 75640 bytes .../refs/Microsoft.AspNetCore.Mvc.dll | Bin 0 -> 15944 bytes .../Microsoft.AspNetCore.Razor.Runtime.dll | Bin 0 -> 19320 bytes .../refs/Microsoft.AspNetCore.Razor.dll | Bin 0 -> 24680 bytes ...spNetCore.ResponseCaching.Abstractions.dll | Bin 0 -> 15224 bytes .../Microsoft.AspNetCore.ResponseCaching.dll | Bin 0 -> 16760 bytes ...crosoft.AspNetCore.ResponseCompression.dll | Bin 0 -> 18808 bytes .../refs/Microsoft.AspNetCore.Rewrite.dll | Bin 0 -> 18296 bytes ...rosoft.AspNetCore.Routing.Abstractions.dll | Bin 0 -> 18808 bytes .../refs/Microsoft.AspNetCore.Routing.dll | Bin 0 -> 46456 bytes .../Microsoft.AspNetCore.Server.HttpSys.dll | Bin 0 -> 19832 bytes .../refs/Microsoft.AspNetCore.Server.IIS.dll | Bin 0 -> 21368 bytes ...osoft.AspNetCore.Server.IISIntegration.dll | Bin 0 -> 16760 bytes ...crosoft.AspNetCore.Server.Kestrel.Core.dll | Bin 0 -> 27720 bytes ...tCore.Server.Kestrel.Transport.Sockets.dll | Bin 0 -> 16760 bytes .../Microsoft.AspNetCore.Server.Kestrel.dll | Bin 0 -> 15224 bytes .../refs/Microsoft.AspNetCore.Session.dll | Bin 0 -> 17784 bytes .../Microsoft.AspNetCore.SignalR.Common.dll | Bin 0 -> 19832 bytes .../Microsoft.AspNetCore.SignalR.Core.dll | Bin 0 -> 30072 bytes ...soft.AspNetCore.SignalR.Protocols.Json.dll | Bin 0 -> 16248 bytes .../refs/Microsoft.AspNetCore.SignalR.dll | Bin 0 -> 16760 bytes .../refs/Microsoft.AspNetCore.StaticFiles.dll | Bin 0 -> 20856 bytes .../refs/Microsoft.AspNetCore.WebSockets.dll | Bin 0 -> 16760 bytes .../Microsoft.AspNetCore.WebUtilities.dll | Bin 0 -> 23928 bytes .../refs/Microsoft.AspNetCore.dll | Bin 0 -> 15224 bytes .../netcoreapp3.1/refs/Microsoft.CSharp.dll | Bin 0 -> 16488 bytes ...Microsoft.Extensions.Configuration.Ini.dll | Bin 0 -> 15736 bytes ...ft.Extensions.Configuration.KeyPerFile.dll | Bin 0 -> 15736 bytes ...Microsoft.Extensions.Configuration.Xml.dll | Bin 0 -> 16248 bytes ....Diagnostics.HealthChecks.Abstractions.dll | Bin 0 -> 17272 bytes ...ft.Extensions.Diagnostics.HealthChecks.dll | Bin 0 -> 17784 bytes ...soft.Extensions.FileProviders.Embedded.dll | Bin 0 -> 15736 bytes .../refs/Microsoft.Extensions.Hosting.dll | Bin 0 -> 18808 bytes .../refs/Microsoft.Extensions.Http.dll | Bin 0 -> 18808 bytes .../Microsoft.Extensions.Identity.Core.dll | Bin 0 -> 42360 bytes .../Microsoft.Extensions.Identity.Stores.dll | Bin 0 -> 27000 bytes ...osoft.Extensions.Logging.Configuration.dll | Bin 0 -> 15736 bytes .../Microsoft.Extensions.Logging.Console.dll | Bin 0 -> 15736 bytes .../Microsoft.Extensions.Logging.Debug.dll | Bin 0 -> 14712 bytes .../Microsoft.Extensions.Logging.EventLog.dll | Bin 0 -> 15736 bytes ...crosoft.Extensions.Logging.EventSource.dll | Bin 0 -> 15224 bytes ...crosoft.Extensions.Logging.TraceSource.dll | Bin 0 -> 15224 bytes .../refs/Microsoft.Extensions.ObjectPool.dll | Bin 0 -> 16248 bytes ...oft.Extensions.Options.DataAnnotations.dll | Bin 0 -> 14712 bytes .../refs/Microsoft.Extensions.WebEncoders.dll | Bin 0 -> 16760 bytes .../refs/Microsoft.JSInterop.dll | Bin 0 -> 17784 bytes .../refs/Microsoft.Net.Http.Headers.dll | Bin 0 -> 27512 bytes .../refs/Microsoft.VisualBasic.Core.dll | Bin 0 -> 52296 bytes .../refs/Microsoft.VisualBasic.dll | Bin 0 -> 16456 bytes .../refs/Microsoft.Win32.Primitives.dll | Bin 0 -> 14920 bytes .../refs/Microsoft.Win32.Registry.dll | Bin 0 -> 20040 bytes .../netcoreapp3.1/refs/System.AppContext.dll | Bin 0 -> 14408 bytes .../netcoreapp3.1/refs/System.Buffers.dll | Bin 0 -> 15224 bytes .../refs/System.Collections.Concurrent.dll | Bin 0 -> 26184 bytes .../refs/System.Collections.Immutable.dll | Bin 0 -> 59976 bytes .../refs/System.Collections.NonGeneric.dll | Bin 0 -> 21576 bytes .../refs/System.Collections.Specialized.dll | Bin 0 -> 23112 bytes .../netcoreapp3.1/refs/System.Collections.dll | Bin 0 -> 42056 bytes .../System.ComponentModel.Annotations.dll | Bin 0 -> 27208 bytes .../System.ComponentModel.DataAnnotations.dll | Bin 0 -> 15224 bytes .../System.ComponentModel.EventBasedAsync.dll | Bin 0 -> 17992 bytes .../refs/System.ComponentModel.Primitives.dll | Bin 0 -> 22088 bytes .../System.ComponentModel.TypeConverter.dll | Bin 0 -> 90696 bytes .../refs/System.ComponentModel.dll | Bin 0 -> 14952 bytes .../refs/System.Configuration.dll | Bin 0 -> 17992 bytes .../netcoreapp3.1/refs/System.Console.dll | Bin 0 -> 23624 bytes .../Debug/netcoreapp3.1/refs/System.Core.dll | Bin 0 -> 22088 bytes .../netcoreapp3.1/refs/System.Data.Common.dll | Bin 0 -> 130120 bytes .../refs/System.Data.DataSetExtensions.dll | Bin 0 -> 14408 bytes .../Debug/netcoreapp3.1/refs/System.Data.dll | Bin 0 -> 22600 bytes .../refs/System.Diagnostics.Contracts.dll | Bin 0 -> 19528 bytes .../refs/System.Diagnostics.Debug.dll | Bin 0 -> 19528 bytes .../System.Diagnostics.DiagnosticSource.dll | Bin 0 -> 18808 bytes .../refs/System.Diagnostics.EventLog.dll | Bin 0 -> 34168 bytes .../System.Diagnostics.FileVersionInfo.dll | Bin 0 -> 15976 bytes .../refs/System.Diagnostics.Process.dll | Bin 0 -> 27208 bytes .../refs/System.Diagnostics.StackTrace.dll | Bin 0 -> 22088 bytes ...em.Diagnostics.TextWriterTraceListener.dll | Bin 0 -> 16456 bytes .../refs/System.Diagnostics.Tools.dll | Bin 0 -> 15944 bytes .../refs/System.Diagnostics.TraceSource.dll | Bin 0 -> 25160 bytes .../refs/System.Diagnostics.Tracing.dll | Bin 0 -> 26184 bytes .../refs/System.Drawing.Primitives.dll | Bin 0 -> 32360 bytes .../netcoreapp3.1/refs/System.Drawing.dll | Bin 0 -> 19560 bytes .../refs/System.Dynamic.Runtime.dll | Bin 0 -> 15432 bytes .../refs/System.Globalization.Calendars.dll | Bin 0 -> 14920 bytes .../refs/System.Globalization.Extensions.dll | Bin 0 -> 14408 bytes .../refs/System.Globalization.dll | Bin 0 -> 14408 bytes .../refs/System.IO.Compression.Brotli.dll | Bin 0 -> 16456 bytes .../refs/System.IO.Compression.FileSystem.dll | Bin 0 -> 13896 bytes .../refs/System.IO.Compression.ZipFile.dll | Bin 0 -> 15432 bytes .../refs/System.IO.Compression.dll | Bin 0 -> 18504 bytes .../refs/System.IO.FileSystem.DriveInfo.dll | Bin 0 -> 15432 bytes .../refs/System.IO.FileSystem.Primitives.dll | Bin 0 -> 14408 bytes .../refs/System.IO.FileSystem.Watcher.dll | Bin 0 -> 18296 bytes .../refs/System.IO.FileSystem.dll | Bin 0 -> 27240 bytes .../refs/System.IO.IsolatedStorage.dll | Bin 0 -> 21064 bytes .../refs/System.IO.MemoryMappedFiles.dll | Bin 0 -> 17480 bytes .../refs/System.IO.Pipelines.dll | Bin 0 -> 19016 bytes .../netcoreapp3.1/refs/System.IO.Pipes.dll | Bin 0 -> 20040 bytes .../refs/System.IO.UnmanagedMemoryStream.dll | Bin 0 -> 14408 bytes .../Debug/netcoreapp3.1/refs/System.IO.dll | Bin 0 -> 14920 bytes .../refs/System.Linq.Expressions.dll | Bin 0 -> 57448 bytes .../refs/System.Linq.Parallel.dll | Bin 0 -> 28744 bytes .../refs/System.Linq.Queryable.dll | Bin 0 -> 24440 bytes .../Debug/netcoreapp3.1/refs/System.Linq.dll | Bin 0 -> 26696 bytes .../netcoreapp3.1/refs/System.Memory.dll | Bin 0 -> 38776 bytes .../netcoreapp3.1/refs/System.Net.Http.dll | Bin 0 -> 41544 bytes .../refs/System.Net.HttpListener.dll | Bin 0 -> 22904 bytes .../netcoreapp3.1/refs/System.Net.Mail.dll | Bin 0 -> 27512 bytes .../refs/System.Net.NameResolution.dll | Bin 0 -> 16456 bytes .../refs/System.Net.NetworkInformation.dll | Bin 0 -> 30792 bytes .../netcoreapp3.1/refs/System.Net.Ping.dll | Bin 0 -> 17992 bytes .../refs/System.Net.Primitives.dll | Bin 0 -> 30792 bytes .../refs/System.Net.Requests.dll | Bin 0 -> 34376 bytes .../refs/System.Net.Security.dll | Bin 0 -> 44616 bytes .../refs/System.Net.ServicePoint.dll | Bin 0 -> 18296 bytes .../netcoreapp3.1/refs/System.Net.Sockets.dll | Bin 0 -> 39288 bytes .../refs/System.Net.WebClient.dll | Bin 0 -> 25464 bytes .../refs/System.Net.WebHeaderCollection.dll | Bin 0 -> 17784 bytes .../refs/System.Net.WebProxy.dll | Bin 0 -> 16248 bytes .../refs/System.Net.WebSockets.Client.dll | Bin 0 -> 16760 bytes .../refs/System.Net.WebSockets.dll | Bin 0 -> 19320 bytes .../Debug/netcoreapp3.1/refs/System.Net.dll | Bin 0 -> 15976 bytes .../refs/System.Numerics.Vectors.dll | Bin 0 -> 33864 bytes .../netcoreapp3.1/refs/System.Numerics.dll | Bin 0 -> 14408 bytes .../netcoreapp3.1/refs/System.ObjectModel.dll | Bin 0 -> 27512 bytes .../refs/System.Reflection.DispatchProxy.dll | Bin 0 -> 14408 bytes .../System.Reflection.Emit.ILGeneration.dll | Bin 0 -> 20040 bytes .../System.Reflection.Emit.Lightweight.dll | Bin 0 -> 18296 bytes .../refs/System.Reflection.Emit.dll | Bin 0 -> 36728 bytes .../refs/System.Reflection.Extensions.dll | Bin 0 -> 14200 bytes .../refs/System.Reflection.Metadata.dll | Bin 0 -> 115272 bytes .../refs/System.Reflection.Primitives.dll | Bin 0 -> 21576 bytes .../refs/System.Reflection.TypeExtensions.dll | Bin 0 -> 17480 bytes .../netcoreapp3.1/refs/System.Reflection.dll | Bin 0 -> 15432 bytes .../refs/System.Resources.Reader.dll | Bin 0 -> 14408 bytes .../refs/System.Resources.ResourceManager.dll | Bin 0 -> 19016 bytes .../refs/System.Resources.Writer.dll | Bin 0 -> 14920 bytes ...System.Runtime.CompilerServices.Unsafe.dll | Bin 0 -> 16456 bytes ...ystem.Runtime.CompilerServices.VisualC.dll | Bin 0 -> 15944 bytes .../refs/System.Runtime.Extensions.dll | Bin 0 -> 80968 bytes .../refs/System.Runtime.Handles.dll | Bin 0 -> 14408 bytes ...ime.InteropServices.RuntimeInformation.dll | Bin 0 -> 15432 bytes ...Runtime.InteropServices.WindowsRuntime.dll | Bin 0 -> 17480 bytes .../refs/System.Runtime.InteropServices.dll | Bin 0 -> 63560 bytes .../refs/System.Runtime.Intrinsics.dll | Bin 0 -> 75128 bytes .../refs/System.Runtime.Loader.dll | Bin 0 -> 17992 bytes .../refs/System.Runtime.Numerics.dll | Bin 0 -> 22088 bytes ...ystem.Runtime.Serialization.Formatters.dll | Bin 0 -> 21064 bytes .../System.Runtime.Serialization.Json.dll | Bin 0 -> 18504 bytes ...ystem.Runtime.Serialization.Primitives.dll | Bin 0 -> 17992 bytes .../refs/System.Runtime.Serialization.Xml.dll | Bin 0 -> 32840 bytes .../refs/System.Runtime.Serialization.dll | Bin 0 -> 15944 bytes .../netcoreapp3.1/refs/System.Runtime.dll | Bin 0 -> 330824 bytes .../refs/System.Security.AccessControl.dll | Bin 0 -> 33352 bytes .../refs/System.Security.Claims.dll | Bin 0 -> 30280 bytes ...ystem.Security.Cryptography.Algorithms.dll | Bin 0 -> 36424 bytes .../refs/System.Security.Cryptography.Cng.dll | Bin 0 -> 27720 bytes .../refs/System.Security.Cryptography.Csp.dll | Bin 0 -> 24648 bytes .../System.Security.Cryptography.Encoding.dll | Bin 0 -> 18504 bytes ...ystem.Security.Cryptography.Primitives.dll | Bin 0 -> 22600 bytes ...Security.Cryptography.X509Certificates.dll | Bin 0 -> 34888 bytes .../refs/System.Security.Cryptography.Xml.dll | Bin 0 -> 36216 bytes .../refs/System.Security.Permissions.dll | Bin 0 -> 72056 bytes .../System.Security.Principal.Windows.dll | Bin 0 -> 24952 bytes .../refs/System.Security.Principal.dll | Bin 0 -> 15432 bytes .../refs/System.Security.SecureString.dll | Bin 0 -> 14408 bytes .../netcoreapp3.1/refs/System.Security.dll | Bin 0 -> 16968 bytes .../refs/System.ServiceModel.Web.dll | Bin 0 -> 15224 bytes .../refs/System.ServiceProcess.dll | Bin 0 -> 14920 bytes .../refs/System.Text.Encoding.CodePages.dll | Bin 0 -> 14408 bytes .../refs/System.Text.Encoding.Extensions.dll | Bin 0 -> 19528 bytes .../refs/System.Text.Encoding.dll | Bin 0 -> 14952 bytes .../refs/System.Text.Encodings.Web.dll | Bin 0 -> 24952 bytes .../refs/System.Text.RegularExpressions.dll | Bin 0 -> 28744 bytes .../refs/System.Threading.Channels.dll | Bin 0 -> 16760 bytes .../refs/System.Threading.Overlapped.dll | Bin 0 -> 17992 bytes .../refs/System.Threading.Tasks.Dataflow.dll | Bin 0 -> 29256 bytes .../System.Threading.Tasks.Extensions.dll | Bin 0 -> 14712 bytes .../refs/System.Threading.Tasks.Parallel.dll | Bin 0 -> 17992 bytes .../refs/System.Threading.Tasks.dll | Bin 0 -> 21096 bytes .../refs/System.Threading.Thread.dll | Bin 0 -> 22088 bytes .../refs/System.Threading.ThreadPool.dll | Bin 0 -> 17480 bytes .../refs/System.Threading.Timer.dll | Bin 0 -> 15976 bytes .../netcoreapp3.1/refs/System.Threading.dll | Bin 0 -> 30280 bytes .../refs/System.Transactions.Local.dll | Bin 0 -> 22904 bytes .../refs/System.Transactions.dll | Bin 0 -> 15432 bytes .../netcoreapp3.1/refs/System.ValueTuple.dll | Bin 0 -> 14200 bytes .../refs/System.Web.HttpUtility.dll | Bin 0 -> 15736 bytes .../Debug/netcoreapp3.1/refs/System.Web.dll | Bin 0 -> 13896 bytes .../refs/System.Windows.Extensions.dll | Bin 0 -> 19320 bytes .../netcoreapp3.1/refs/System.Windows.dll | Bin 0 -> 14440 bytes .../netcoreapp3.1/refs/System.Xml.Linq.dll | Bin 0 -> 14920 bytes .../refs/System.Xml.ReaderWriter.dll | Bin 0 -> 106056 bytes .../refs/System.Xml.Serialization.dll | Bin 0 -> 14920 bytes .../refs/System.Xml.XDocument.dll | Bin 0 -> 30792 bytes .../refs/System.Xml.XPath.XDocument.dll | Bin 0 -> 15432 bytes .../netcoreapp3.1/refs/System.Xml.XPath.dll | Bin 0 -> 15432 bytes .../refs/System.Xml.XmlDocument.dll | Bin 0 -> 14952 bytes .../refs/System.Xml.XmlSerializer.dll | Bin 0 -> 45160 bytes .../Debug/netcoreapp3.1/refs/System.Xml.dll | Bin 0 -> 22600 bytes .../bin/Debug/netcoreapp3.1/refs/System.dll | Bin 0 -> 48712 bytes .../Debug/netcoreapp3.1/refs/WindowsBase.dll | Bin 0 -> 15224 bytes .../bin/Debug/netcoreapp3.1/refs/mscorlib.dll | Bin 0 -> 55880 bytes .../Debug/netcoreapp3.1/refs/netstandard.dll | Bin 0 -> 99704 bytes ....SettingManagement.HttpApi.AssemblyInfo.cs | 23 + ...anagement.HttpApi.AssemblyInfoInputs.cache | 1 + ...Abp.SettingManagement.HttpApi.assets.cache | Bin 0 -> 61230 bytes ...tingManagement.HttpApi.csproj.CopyComplete | 0 ...ent.HttpApi.csproj.CoreCompileInputs.cache | 1 + ...gement.HttpApi.csproj.FileListAbsolute.txt | 269 + ...ment.HttpApi.csprojAssemblyReference.cache | Bin 0 -> 28082 bytes .../LINGYUN.Abp.SettingManagement.HttpApi.dll | Bin 0 -> 9728 bytes .../LINGYUN.Abp.SettingManagement.HttpApi.pdb | Bin 0 -> 1780 bytes ....SettingManagement.HttpApi.AssemblyInfo.cs | 23 + ...anagement.HttpApi.AssemblyInfoInputs.cache | 1 + ...Abp.SettingManagement.HttpApi.assets.cache | Bin 0 -> 61239 bytes ...tingManagement.HttpApi.csproj.CopyComplete | 0 ...gement.HttpApi.csproj.FileListAbsolute.txt | 268 + ...ment.HttpApi.csprojAssemblyReference.cache | Bin 0 -> 235799 bytes ...lticolin.Abp.SettingManagement.HttpApi.dll | Bin 0 -> 9728 bytes ...lticolin.Abp.SettingManagement.HttpApi.pdb | Bin 0 -> 1788 bytes ...ttingManagement.HttpApi.csproj.nuget.cache | 5 + ...anagement.HttpApi.csproj.nuget.dgspec.json | 217 + ...ingManagement.HttpApi.csproj.nuget.g.props | 27 + ...gManagement.HttpApi.csproj.nuget.g.targets | 9 + ...ttingManagement.HttpApi.csproj.nuget.cache | 5 + ...anagement.HttpApi.csproj.nuget.dgspec.json | 214 + ...ingManagement.HttpApi.csproj.nuget.g.props | 27 + ...gManagement.HttpApi.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 4917 ++++ .../obj/project.nuget.cache | 127 + .../account/AuthServer.Host/.gitignore | 7 + .../AuthIdentityServerModule.cs | 187 + .../AuthServer.Host/AuthServer.Host.csproj | 62 + .../IdentityServerDataSeedContributor.cs | 256 + .../AuthServer.Host/Pages/Index.cshtml | 34 + .../AuthServer.Host/Pages/Index.cshtml.cs | 11 + .../AuthServer.Host/Pages/_ViewImports.cshtml | 4 + .../account/AuthServer.Host/Program.cs | 49 + .../Properties/launchSettings.json | 20 + .../account/AuthServer.Host/Startup.cs | 20 + .../AuthServer.Host/abp.resourcemapping.js | 11 + .../account/AuthServer.Host/gulpfile.js | 9 + .../account/AuthServer.Host/package.json | 8 + .../account/AuthServer.Host/tempkey.rsa | 1 + .../@fortawesome/fontawesome-free/css/all.css | 4423 +++ .../fontawesome-free/css/v4-shims.css | 2166 ++ .../webfonts/fa-brands-400.eot | Bin 0 -> 130906 bytes .../webfonts/fa-brands-400.svg | 3496 +++ .../webfonts/fa-brands-400.ttf | Bin 0 -> 130600 bytes .../webfonts/fa-brands-400.woff | Bin 0 -> 88428 bytes .../webfonts/fa-brands-400.woff2 | Bin 0 -> 75336 bytes .../webfonts/fa-regular-400.eot | Bin 0 -> 34394 bytes .../webfonts/fa-regular-400.svg | 803 + .../webfonts/fa-regular-400.ttf | Bin 0 -> 34096 bytes .../webfonts/fa-regular-400.woff | Bin 0 -> 16804 bytes .../webfonts/fa-regular-400.woff2 | Bin 0 -> 13584 bytes .../webfonts/fa-solid-900.eot | Bin 0 -> 192758 bytes .../webfonts/fa-solid-900.svg | 4667 ++++ .../webfonts/fa-solid-900.ttf | Bin 0 -> 192472 bytes .../webfonts/fa-solid-900.woff | Bin 0 -> 98384 bytes .../webfonts/fa-solid-900.woff2 | Bin 0 -> 75728 bytes .../wwwroot/libs/abp/core/abp.css | 56 + .../wwwroot/libs/abp/core/abp.js | 636 + .../wwwroot/libs/abp/jquery/abp.jquery.js | 393 + .../wwwroot/libs/abp/utils/abp-utils.umd.js | 600 + .../libs/abp/utils/abp-utils.umd.js.map | 1 + .../libs/abp/utils/abp-utils.umd.min.js | 2 + .../libs/abp/utils/abp-utils.umd.min.js.map | 1 + .../bootstrap-datepicker.css.map | 1 + .../bootstrap-datepicker.min.css | 7 + .../bootstrap-datepicker.min.js | 8 + .../locales/bootstrap-datepicker-en-CA.min.js | 1 + .../locales/bootstrap-datepicker.ar-tn.min.js | 1 + .../locales/bootstrap-datepicker.ar.min.js | 1 + .../locales/bootstrap-datepicker.az.min.js | 1 + .../locales/bootstrap-datepicker.bg.min.js | 1 + .../locales/bootstrap-datepicker.bm.min.js | 1 + .../locales/bootstrap-datepicker.bn.min.js | 1 + .../locales/bootstrap-datepicker.br.min.js | 1 + .../locales/bootstrap-datepicker.bs.min.js | 1 + .../locales/bootstrap-datepicker.ca.min.js | 1 + .../locales/bootstrap-datepicker.cs.min.js | 1 + .../locales/bootstrap-datepicker.cy.min.js | 1 + .../locales/bootstrap-datepicker.da.min.js | 1 + .../locales/bootstrap-datepicker.de.min.js | 1 + .../locales/bootstrap-datepicker.el.min.js | 1 + .../locales/bootstrap-datepicker.en-AU.min.js | 1 + .../locales/bootstrap-datepicker.en-CA.min.js | 1 + .../locales/bootstrap-datepicker.en-GB.min.js | 1 + .../locales/bootstrap-datepicker.en-IE.min.js | 1 + .../locales/bootstrap-datepicker.en-NZ.min.js | 1 + .../locales/bootstrap-datepicker.en-ZA.min.js | 1 + .../locales/bootstrap-datepicker.eo.min.js | 1 + .../locales/bootstrap-datepicker.es.min.js | 1 + .../locales/bootstrap-datepicker.et.min.js | 1 + .../locales/bootstrap-datepicker.eu.min.js | 1 + .../locales/bootstrap-datepicker.fa.min.js | 1 + .../locales/bootstrap-datepicker.fi.min.js | 1 + .../locales/bootstrap-datepicker.fo.min.js | 1 + .../locales/bootstrap-datepicker.fr-CH.min.js | 1 + .../locales/bootstrap-datepicker.fr.min.js | 1 + .../locales/bootstrap-datepicker.gl.min.js | 1 + .../locales/bootstrap-datepicker.he.min.js | 1 + .../locales/bootstrap-datepicker.hi.min.js | 1 + .../locales/bootstrap-datepicker.hr.min.js | 1 + .../locales/bootstrap-datepicker.hu.min.js | 1 + .../locales/bootstrap-datepicker.hy.min.js | 1 + .../locales/bootstrap-datepicker.id.min.js | 1 + .../locales/bootstrap-datepicker.is.min.js | 1 + .../locales/bootstrap-datepicker.it-CH.min.js | 1 + .../locales/bootstrap-datepicker.it.min.js | 1 + .../locales/bootstrap-datepicker.ja.min.js | 1 + .../locales/bootstrap-datepicker.ka.min.js | 1 + .../locales/bootstrap-datepicker.kh.min.js | 1 + .../locales/bootstrap-datepicker.kk.min.js | 1 + .../locales/bootstrap-datepicker.km.min.js | 1 + .../locales/bootstrap-datepicker.ko.min.js | 1 + .../locales/bootstrap-datepicker.kr.min.js | 1 + .../locales/bootstrap-datepicker.lt.min.js | 1 + .../locales/bootstrap-datepicker.lv.min.js | 1 + .../locales/bootstrap-datepicker.me.min.js | 1 + .../locales/bootstrap-datepicker.mk.min.js | 1 + .../locales/bootstrap-datepicker.mn.min.js | 1 + .../locales/bootstrap-datepicker.ms.min.js | 1 + .../locales/bootstrap-datepicker.nl-BE.min.js | 1 + .../locales/bootstrap-datepicker.nl.min.js | 1 + .../locales/bootstrap-datepicker.no.min.js | 1 + .../locales/bootstrap-datepicker.oc.min.js | 1 + .../locales/bootstrap-datepicker.pl.min.js | 1 + .../locales/bootstrap-datepicker.pt-BR.min.js | 1 + .../locales/bootstrap-datepicker.pt.min.js | 1 + .../locales/bootstrap-datepicker.ro.min.js | 1 + .../bootstrap-datepicker.rs-latin.min.js | 1 + .../locales/bootstrap-datepicker.rs.min.js | 1 + .../locales/bootstrap-datepicker.ru.min.js | 1 + .../locales/bootstrap-datepicker.si.min.js | 1 + .../locales/bootstrap-datepicker.sk.min.js | 1 + .../locales/bootstrap-datepicker.sl.min.js | 1 + .../locales/bootstrap-datepicker.sq.min.js | 1 + .../bootstrap-datepicker.sr-latin.min.js | 1 + .../locales/bootstrap-datepicker.sr.min.js | 1 + .../locales/bootstrap-datepicker.sv.min.js | 1 + .../locales/bootstrap-datepicker.ta.min.js | 1 + .../locales/bootstrap-datepicker.tg.min.js | 1 + .../locales/bootstrap-datepicker.th.min.js | 1 + .../locales/bootstrap-datepicker.tk.min.js | 1 + .../locales/bootstrap-datepicker.tr.min.js | 1 + .../locales/bootstrap-datepicker.uk.min.js | 1 + .../bootstrap-datepicker.uz-cyrl.min.js | 1 + .../bootstrap-datepicker.uz-latn.min.js | 1 + .../locales/bootstrap-datepicker.vi.min.js | 1 + .../locales/bootstrap-datepicker.zh-CN.min.js | 1 + .../locales/bootstrap-datepicker.zh-TW.min.js | 1 + .../wwwroot/libs/bootstrap/css/bootstrap.css | 10038 +++++++ .../libs/bootstrap/js/bootstrap.bundle.js | 7013 +++++ .../css/dataTables.bootstrap4.css | 206 + .../js/dataTables.bootstrap4.js | 184 + .../datatables.net/js/jquery.dataTables.js | 15334 +++++++++++ .../libs/jquery-form/jquery.form.min.js | 23 + .../jquery.validate.unobtrusive.js | 432 + .../libs/jquery-validation/jquery.validate.js | 1650 ++ .../localization/messages_ar.js | 35 + .../localization/messages_ar.min.js | 4 + .../localization/messages_az.js | 35 + .../localization/messages_az.min.js | 4 + .../localization/messages_bg.js | 35 + .../localization/messages_bg.min.js | 4 + .../localization/messages_bn_BD.js | 35 + .../localization/messages_bn_BD.min.js | 4 + .../localization/messages_ca.js | 35 + .../localization/messages_ca.min.js | 4 + .../localization/messages_cs.js | 36 + .../localization/messages_cs.min.js | 4 + .../localization/messages_da.js | 46 + .../localization/messages_da.min.js | 4 + .../localization/messages_de.js | 82 + .../localization/messages_de.min.js | 4 + .../localization/messages_el.js | 35 + .../localization/messages_el.min.js | 4 + .../localization/messages_es.js | 38 + .../localization/messages_es.min.js | 4 + .../localization/messages_es_AR.js | 39 + .../localization/messages_es_AR.min.js | 4 + .../localization/messages_es_PE.js | 39 + .../localization/messages_es_PE.min.js | 4 + .../localization/messages_et.js | 33 + .../localization/messages_et.min.js | 4 + .../localization/messages_eu.js | 35 + .../localization/messages_eu.min.js | 4 + .../localization/messages_fa.js | 39 + .../localization/messages_fa.min.js | 4 + .../localization/messages_fi.js | 33 + .../localization/messages_fi.min.js | 4 + .../localization/messages_fr.js | 63 + .../localization/messages_fr.min.js | 4 + .../localization/messages_ge.js | 35 + .../localization/messages_ge.min.js | 4 + .../localization/messages_gl.js | 40 + .../localization/messages_gl.min.js | 4 + .../localization/messages_he.js | 35 + .../localization/messages_he.min.js | 4 + .../localization/messages_hr.js | 35 + .../localization/messages_hr.min.js | 4 + .../localization/messages_hu.js | 35 + .../localization/messages_hu.min.js | 4 + .../localization/messages_hy_AM.js | 35 + .../localization/messages_hy_AM.min.js | 4 + .../localization/messages_id.js | 34 + .../localization/messages_id.min.js | 4 + .../localization/messages_is.js | 33 + .../localization/messages_is.min.js | 4 + .../localization/messages_it.js | 39 + .../localization/messages_it.min.js | 4 + .../localization/messages_ja.js | 36 + .../localization/messages_ja.min.js | 4 + .../localization/messages_ka.js | 35 + .../localization/messages_ka.min.js | 4 + .../localization/messages_kk.js | 35 + .../localization/messages_kk.min.js | 4 + .../localization/messages_ko.js | 35 + .../localization/messages_ko.min.js | 4 + .../localization/messages_lt.js | 35 + .../localization/messages_lt.min.js | 4 + .../localization/messages_lv.js | 35 + .../localization/messages_lv.min.js | 4 + .../localization/messages_mk.js | 35 + .../localization/messages_mk.min.js | 4 + .../localization/messages_my.js | 35 + .../localization/messages_my.min.js | 4 + .../localization/messages_nl.js | 46 + .../localization/messages_nl.min.js | 4 + .../localization/messages_no.js | 35 + .../localization/messages_no.min.js | 4 + .../localization/messages_pl.js | 38 + .../localization/messages_pl.min.js | 4 + .../localization/messages_pt_BR.js | 91 + .../localization/messages_pt_BR.min.js | 4 + .../localization/messages_pt_PT.js | 39 + .../localization/messages_pt_PT.min.js | 4 + .../localization/messages_ro.js | 35 + .../localization/messages_ro.min.js | 4 + .../localization/messages_ru.js | 35 + .../localization/messages_ru.min.js | 4 + .../localization/messages_sd.js | 35 + .../localization/messages_sd.min.js | 4 + .../localization/messages_si.js | 35 + .../localization/messages_si.min.js | 4 + .../localization/messages_sk.js | 33 + .../localization/messages_sk.min.js | 4 + .../localization/messages_sl.js | 35 + .../localization/messages_sl.min.js | 4 + .../localization/messages_sr.js | 35 + .../localization/messages_sr.min.js | 4 + .../localization/messages_sr_lat.js | 35 + .../localization/messages_sr_lat.min.js | 4 + .../localization/messages_sv.js | 35 + .../localization/messages_sv.min.js | 4 + .../localization/messages_th.js | 35 + .../localization/messages_th.min.js | 4 + .../localization/messages_tj.js | 35 + .../localization/messages_tj.min.js | 4 + .../localization/messages_tr.js | 36 + .../localization/messages_tr.min.js | 4 + .../localization/messages_uk.js | 35 + .../localization/messages_uk.min.js | 4 + .../localization/messages_ur.js | 35 + .../localization/messages_ur.min.js | 4 + .../localization/messages_vi.js | 35 + .../localization/messages_vi.min.js | 4 + .../localization/messages_zh.js | 36 + .../localization/messages_zh.min.js | 4 + .../localization/messages_zh_TW.js | 36 + .../localization/messages_zh_TW.min.js | 4 + .../localization/methods_de.js | 24 + .../localization/methods_de.min.js | 4 + .../localization/methods_es_CL.js | 24 + .../localization/methods_es_CL.min.js | 4 + .../localization/methods_fi.js | 24 + .../localization/methods_fi.min.js | 4 + .../localization/methods_it.js | 24 + .../localization/methods_it.min.js | 4 + .../localization/methods_nl.js | 24 + .../localization/methods_nl.min.js | 4 + .../localization/methods_pt.js | 21 + .../localization/methods_pt.min.js | 4 + .../wwwroot/libs/jquery/jquery.js | 10598 ++++++++ .../wwwroot/libs/lodash/lodash.min.js | 137 + .../wwwroot/libs/luxon/luxon.js | 8265 ++++++ .../wwwroot/libs/luxon/luxon.js.map | 1 + .../wwwroot/libs/luxon/luxon.min.js | 1 + .../wwwroot/libs/luxon/luxon.min.js.map | 1 + .../jquery.mCustomScrollbar.concat.min.js | 5 + .../jquery.mCustomScrollbar.css | 1267 + .../jquery.mCustomScrollbar.js | 2458 ++ .../mCSB_buttons.png | Bin 0 -> 2998 bytes .../package.json | 37 + .../malihu-custom-scrollbar-plugin/readme.md | 82 + .../wwwroot/libs/select2/css/select2.min.css | 1 + .../wwwroot/libs/select2/js/i18n/af.js | 3 + .../wwwroot/libs/select2/js/i18n/ar.js | 3 + .../wwwroot/libs/select2/js/i18n/az.js | 3 + .../wwwroot/libs/select2/js/i18n/bg.js | 3 + .../wwwroot/libs/select2/js/i18n/bn.js | 3 + .../wwwroot/libs/select2/js/i18n/bs.js | 3 + .../wwwroot/libs/select2/js/i18n/ca.js | 3 + .../wwwroot/libs/select2/js/i18n/cs.js | 3 + .../wwwroot/libs/select2/js/i18n/da.js | 3 + .../wwwroot/libs/select2/js/i18n/de.js | 3 + .../wwwroot/libs/select2/js/i18n/dsb.js | 3 + .../wwwroot/libs/select2/js/i18n/el.js | 3 + .../wwwroot/libs/select2/js/i18n/en.js | 3 + .../wwwroot/libs/select2/js/i18n/es.js | 3 + .../wwwroot/libs/select2/js/i18n/et.js | 3 + .../wwwroot/libs/select2/js/i18n/eu.js | 3 + .../wwwroot/libs/select2/js/i18n/fa.js | 3 + .../wwwroot/libs/select2/js/i18n/fi.js | 3 + .../wwwroot/libs/select2/js/i18n/fr.js | 3 + .../wwwroot/libs/select2/js/i18n/gl.js | 3 + .../wwwroot/libs/select2/js/i18n/he.js | 3 + .../wwwroot/libs/select2/js/i18n/hi.js | 3 + .../wwwroot/libs/select2/js/i18n/hr.js | 3 + .../wwwroot/libs/select2/js/i18n/hsb.js | 3 + .../wwwroot/libs/select2/js/i18n/hu.js | 3 + .../wwwroot/libs/select2/js/i18n/hy.js | 3 + .../wwwroot/libs/select2/js/i18n/id.js | 3 + .../wwwroot/libs/select2/js/i18n/is.js | 3 + .../wwwroot/libs/select2/js/i18n/it.js | 3 + .../wwwroot/libs/select2/js/i18n/ja.js | 3 + .../wwwroot/libs/select2/js/i18n/ka.js | 3 + .../wwwroot/libs/select2/js/i18n/km.js | 3 + .../wwwroot/libs/select2/js/i18n/ko.js | 3 + .../wwwroot/libs/select2/js/i18n/lt.js | 3 + .../wwwroot/libs/select2/js/i18n/lv.js | 3 + .../wwwroot/libs/select2/js/i18n/mk.js | 3 + .../wwwroot/libs/select2/js/i18n/ms.js | 3 + .../wwwroot/libs/select2/js/i18n/nb.js | 3 + .../wwwroot/libs/select2/js/i18n/ne.js | 3 + .../wwwroot/libs/select2/js/i18n/nl.js | 3 + .../wwwroot/libs/select2/js/i18n/pl.js | 3 + .../wwwroot/libs/select2/js/i18n/ps.js | 3 + .../wwwroot/libs/select2/js/i18n/pt-BR.js | 3 + .../wwwroot/libs/select2/js/i18n/pt.js | 3 + .../wwwroot/libs/select2/js/i18n/ro.js | 3 + .../wwwroot/libs/select2/js/i18n/ru.js | 3 + .../wwwroot/libs/select2/js/i18n/sk.js | 3 + .../wwwroot/libs/select2/js/i18n/sl.js | 3 + .../wwwroot/libs/select2/js/i18n/sq.js | 3 + .../wwwroot/libs/select2/js/i18n/sr-Cyrl.js | 3 + .../wwwroot/libs/select2/js/i18n/sr.js | 3 + .../wwwroot/libs/select2/js/i18n/sv.js | 3 + .../wwwroot/libs/select2/js/i18n/th.js | 3 + .../wwwroot/libs/select2/js/i18n/tk.js | 3 + .../wwwroot/libs/select2/js/i18n/tr.js | 3 + .../wwwroot/libs/select2/js/i18n/uk.js | 3 + .../wwwroot/libs/select2/js/i18n/vi.js | 3 + .../wwwroot/libs/select2/js/i18n/zh-CN.js | 3 + .../wwwroot/libs/select2/js/i18n/zh-TW.js | 3 + .../js/select2-bootstrap-modal-patch.js | 4 + .../libs/select2/js/select2.full.min.js | 2 + .../wwwroot/libs/select2/js/select2.min.js | 2 + .../wwwroot/libs/sweetalert/sweetalert.min.js | 1 + .../wwwroot/libs/timeago/jquery.timeago.js | 232 + .../wwwroot/libs/timeago/locales/README.md | 27 + .../libs/timeago/locales/jquery.timeago.af.js | 30 + .../libs/timeago/locales/jquery.timeago.am.js | 30 + .../libs/timeago/locales/jquery.timeago.ar.js | 104 + .../locales/jquery.timeago.az-short.js | 30 + .../libs/timeago/locales/jquery.timeago.az.js | 30 + .../libs/timeago/locales/jquery.timeago.be.js | 43 + .../libs/timeago/locales/jquery.timeago.bg.js | 28 + .../libs/timeago/locales/jquery.timeago.bs.js | 55 + .../libs/timeago/locales/jquery.timeago.ca.js | 30 + .../libs/timeago/locales/jquery.timeago.cs.js | 34 + .../libs/timeago/locales/jquery.timeago.cy.js | 30 + .../libs/timeago/locales/jquery.timeago.da.js | 28 + .../locales/jquery.timeago.de-short.js | 30 + .../libs/timeago/locales/jquery.timeago.de.js | 28 + .../libs/timeago/locales/jquery.timeago.dv.js | 32 + .../libs/timeago/locales/jquery.timeago.el.js | 28 + .../locales/jquery.timeago.en-short.js | 30 + .../libs/timeago/locales/jquery.timeago.en.js | 30 + .../locales/jquery.timeago.es-short.js | 31 + .../libs/timeago/locales/jquery.timeago.es.js | 29 + .../libs/timeago/locales/jquery.timeago.et.js | 28 + .../libs/timeago/locales/jquery.timeago.eu.js | 28 + .../locales/jquery.timeago.fa-short.js | 30 + .../libs/timeago/locales/jquery.timeago.fa.js | 32 + .../libs/timeago/locales/jquery.timeago.fi.js | 38 + .../locales/jquery.timeago.fr-short.js | 26 + .../libs/timeago/locales/jquery.timeago.fr.js | 27 + .../libs/timeago/locales/jquery.timeago.gl.js | 28 + .../libs/timeago/locales/jquery.timeago.he.js | 26 + .../libs/timeago/locales/jquery.timeago.hr.js | 54 + .../libs/timeago/locales/jquery.timeago.hu.js | 28 + .../libs/timeago/locales/jquery.timeago.hy.js | 28 + .../libs/timeago/locales/jquery.timeago.id.js | 29 + .../libs/timeago/locales/jquery.timeago.is.js | 29 + .../locales/jquery.timeago.it-short.js | 30 + .../libs/timeago/locales/jquery.timeago.it.js | 28 + .../libs/timeago/locales/jquery.timeago.ja.js | 29 + .../libs/timeago/locales/jquery.timeago.jv.js | 28 + .../libs/timeago/locales/jquery.timeago.ko.js | 31 + .../libs/timeago/locales/jquery.timeago.ky.js | 42 + .../libs/timeago/locales/jquery.timeago.lt.js | 30 + .../libs/timeago/locales/jquery.timeago.lv.js | 30 + .../libs/timeago/locales/jquery.timeago.mk.js | 30 + .../libs/timeago/locales/jquery.timeago.nl.js | 30 + .../libs/timeago/locales/jquery.timeago.no.js | 28 + .../libs/timeago/locales/jquery.timeago.pl.js | 39 + .../locales/jquery.timeago.pt-br-short.js | 30 + .../timeago/locales/jquery.timeago.pt-br.js | 28 + .../locales/jquery.timeago.pt-short.js | 30 + .../libs/timeago/locales/jquery.timeago.pt.js | 26 + .../libs/timeago/locales/jquery.timeago.ro.js | 29 + .../libs/timeago/locales/jquery.timeago.rs.js | 54 + .../libs/timeago/locales/jquery.timeago.ru.js | 43 + .../libs/timeago/locales/jquery.timeago.rw.js | 30 + .../libs/timeago/locales/jquery.timeago.si.js | 28 + .../libs/timeago/locales/jquery.timeago.sk.js | 34 + .../libs/timeago/locales/jquery.timeago.sl.js | 46 + .../libs/timeago/locales/jquery.timeago.sq.js | 26 + .../libs/timeago/locales/jquery.timeago.sr.js | 54 + .../libs/timeago/locales/jquery.timeago.sv.js | 28 + .../libs/timeago/locales/jquery.timeago.th.js | 30 + .../locales/jquery.timeago.tr-short.js | 30 + .../libs/timeago/locales/jquery.timeago.tr.js | 26 + .../libs/timeago/locales/jquery.timeago.uk.js | 42 + .../libs/timeago/locales/jquery.timeago.ur.js | 30 + .../libs/timeago/locales/jquery.timeago.uz.js | 29 + .../libs/timeago/locales/jquery.timeago.vi.js | 30 + .../timeago/locales/jquery.timeago.zh-CN.js | 31 + .../timeago/locales/jquery.timeago.zh-TW.js | 30 + .../wwwroot/libs/toastr/toastr.css | 228 + .../wwwroot/libs/toastr/toastr.js.map | 1 + .../wwwroot/libs/toastr/toastr.min.css | 1 + .../wwwroot/libs/toastr/toastr.min.js | 2 + .../LINGYUN.ApiGateway.Host/.gitignore | 4 + .../LINGYUN.ApiGateway.Host/Dockerfile | 12 + .../LINGYUN.ApiGateway.Host.csproj | 30 + .../ApiGateway/ApiGatewayHostModule.cs | 91 + .../ApiGateway/ApiGatewayMapperProfile.cs | 117 + .../LINGYUN/ApiGateway/ApiGatewayOptions.cs | 7 + .../IOcelotConfigurationChangedEvent.cs | 9 + .../OcelotConfigurationChangedEvent.cs | 52 + ...piHttpClientFileConfigurationRepository.cs | 83 + .../Extenssions/OcelotMiddlewareExtensions.cs | 122 + .../LINGYUN.ApiGateway.Host/Program.cs | 49 + .../Properties/launchSettings.json | 27 + .../LINGYUN.ApiGateway.Host/Startup.cs | 18 + .../.gitignore | 4 + .../ApiGatewayHttpApiHostAutoMapperProfile.cs | 11 + .../ApiGatewayHttpApiHostModule.cs | 169 + .../Controllers/HomeController.cs | 13 + .../Dockerfile | 12 + .../HttpApiHostMigrationsDbContext.cs | 24 + .../HttpApiHostMigrationsDbContextFactory.cs | 29 + .../LINGYUN.ApiGateway.HttpApi.Host.csproj | 44 + ...946_Migration-ApiGateway-MySql.Designer.cs | 879 + ...200513034946_Migration-ApiGateway-MySql.cs | 581 + ...30_Rename-Router-To-RouteGroup.Designer.cs | 879 + ...00513111130_Rename-Router-To-RouteGroup.cs | 82 + ...ApiHostMigrationsDbContextModelSnapshot.cs | 877 + .../Program.cs | 49 + .../Properties/launchSettings.json | 27 + .../Snowflake/CAPSnowflakeIdGenerator.cs | 19 + .../Startup.cs | 18 + .../Permissions/PermissionChecker.cs | 85 + vueJs/.browserslistrc | 2 + vueJs/.circleci/config.yml | 31 + vueJs/.editorconfig | 35 + vueJs/.env.Github.production | 15 + vueJs/.env.development | 21 + vueJs/.env.staging | 6 + vueJs/.eslintignore | 4 + vueJs/.eslintrc.js | 52 + vueJs/.gitignore | 31 + vueJs/LICENSE | 21 + vueJs/README.en.md | 244 + vueJs/README.md | 289 + vueJs/babel.config.js | 5 + vueJs/cypress.json | 3 + vueJs/demo/dashboard.png | Bin 0 -> 573068 bytes vueJs/images/userLogin.png | Bin 0 -> 12060 bytes vueJs/images/userPermissions.png | Bin 0 -> 34838 bytes vueJs/images/userRoles.png | Bin 0 -> 37085 bytes vueJs/jest.config.js | 6 + vueJs/mock/api.ts | 4 + vueJs/mock/articles.ts | 119 + vueJs/mock/mock-server.ts | 84 + vueJs/mock/role/index.ts | 80 + vueJs/mock/role/routes.ts | 610 + vueJs/mock/security.ts | 12 + vueJs/mock/swagger.yml | 925 + vueJs/mock/transactions.ts | 26 + vueJs/mock/tsconfig.json | 26 + vueJs/mock/users.ts | 140 + vueJs/package-lock.json | 22383 ++++++++++++++++ vueJs/package.json | 143 + vueJs/postcss.config.js | 5 + vueJs/public/favicon.ico | Bin 0 -> 67646 bytes .../img/icons/android-chrome-192x192.png | Bin 0 -> 2484 bytes .../img/icons/android-chrome-512x512.png | Bin 0 -> 7168 bytes .../icons/android-chrome-maskable-192x192.png | Bin 0 -> 11315 bytes .../icons/android-chrome-maskable-512x512.png | Bin 0 -> 35153 bytes .../img/icons/apple-touch-icon-120x120.png | Bin 0 -> 1536 bytes .../img/icons/apple-touch-icon-152x152.png | Bin 0 -> 1921 bytes .../img/icons/apple-touch-icon-180x180.png | Bin 0 -> 2020 bytes .../img/icons/apple-touch-icon-60x60.png | Bin 0 -> 803 bytes .../img/icons/apple-touch-icon-76x76.png | Bin 0 -> 964 bytes vueJs/public/img/icons/apple-touch-icon.png | Bin 0 -> 2020 bytes vueJs/public/img/icons/favicon-16x16.png | Bin 0 -> 480 bytes vueJs/public/img/icons/favicon-32x32.png | Bin 0 -> 645 bytes .../img/icons/msapplication-icon-144x144.png | Bin 0 -> 1947 bytes vueJs/public/img/icons/mstile-150x150.png | Bin 0 -> 1786 bytes vueJs/public/img/icons/safari-pinned-tab.svg | 112 + vueJs/public/index.html | 17 + vueJs/public/manifest.json | 20 + vueJs/public/robots.txt | 2 + vueJs/public/tinymce/emojis.min.js | 2 + vueJs/public/tinymce/langs/es.js | 389 + vueJs/public/tinymce/langs/ja.js | 389 + vueJs/public/tinymce/langs/ko_KR.js | 419 + vueJs/public/tinymce/langs/zh_CN.js | 389 + .../tinymce/skins/content.inline.min.css | 8 + vueJs/public/tinymce/skins/content.min.css | 8 + .../tinymce/skins/content.mobile.min.css | 1 + .../tinymce/skins/fonts/tinymce-mobile.woff | Bin 0 -> 4624 bytes vueJs/public/tinymce/skins/skin.min.css | 8 + .../public/tinymce/skins/skin.mobile.min.css | 2 + vueJs/src/App.vue | 19 + vueJs/src/api/.gitignore | 1 + vueJs/src/api/apigateway.ts | 414 + vueJs/src/api/articles.ts | 61 + vueJs/src/api/localization.ts | 0 vueJs/src/api/permission.ts | 91 + vueJs/src/api/roles.ts | 62 + vueJs/src/api/serviceBase.ts | 61 + vueJs/src/api/settings.ts | 63 + vueJs/src/api/tenant.ts | 50 + vueJs/src/api/transactions.ts | 8 + vueJs/src/api/types.ts | 188 + vueJs/src/api/users.ts | 349 + vueJs/src/assets/401-images/401.gif | Bin 0 -> 164227 bytes vueJs/src/assets/404-images/404-cloud.png | Bin 0 -> 4766 bytes vueJs/src/assets/404-images/404.png | Bin 0 -> 98071 bytes .../custom-theme/fonts/element-icons.ttf | Bin 0 -> 11028 bytes .../custom-theme/fonts/element-icons.woff | Bin 0 -> 6124 bytes vueJs/src/assets/custom-theme/index.css | 1 + vueJs/src/components/AvatarUpload/index.vue | 78 + vueJs/src/components/BackToTop/index.vue | 111 + vueJs/src/components/Breadcrumb/index.vue | 110 + vueJs/src/components/Charts/BarChart.vue | 136 + vueJs/src/components/Charts/LineChart.vue | 192 + vueJs/src/components/Charts/MixedChart.vue | 248 + vueJs/src/components/Charts/mixins/resize.ts | 67 + .../src/components/DraggableKanban/index.vue | 83 + vueJs/src/components/DraggableList/index.vue | 180 + .../src/components/DraggableSelect/index.vue | 65 + vueJs/src/components/DropdownMenu/index.vue | 116 + vueJs/src/components/Dropzone/index.vue | 97 + vueJs/src/components/ErrorLog/index.vue | 105 + vueJs/src/components/GithubCorner/index.vue | 71 + vueJs/src/components/Hamburger/index.vue | 37 + vueJs/src/components/HeaderSearch/index.vue | 218 + vueJs/src/components/InputTag/index.vue | 194 + vueJs/src/components/JsonEditor/index.vue | 91 + vueJs/src/components/LangSelect/index.vue | 69 + .../MarkdownEditor/default-options.ts | 27 + vueJs/src/components/MarkdownEditor/index.vue | 130 + vueJs/src/components/MaterialInput/index.vue | 381 + vueJs/src/components/MessageView/index.vue | 124 + vueJs/src/components/MessageView/item.vue | 60 + vueJs/src/components/Pagination/index.vue | 78 + vueJs/src/components/PanThumb/index.vue | 124 + vueJs/src/components/PermissionTree/index.vue | 223 + vueJs/src/components/RightPanel/index.vue | 151 + vueJs/src/components/Screenfull/index.vue | 51 + vueJs/src/components/SizeSelect/index.vue | 68 + vueJs/src/components/Sticky/index.vue | 83 + .../src/components/TextHoverEffect/Mallki.vue | 114 + vueJs/src/components/ThemePicker/index.vue | 157 + .../Tinymce/components/EditorImage.vue | 134 + vueJs/src/components/Tinymce/config.ts | 8 + vueJs/src/components/Tinymce/index.vue | 214 + vueJs/src/components/UploadExcel/index.vue | 164 + vueJs/src/components/UploadImage/index.vue | 155 + vueJs/src/directives/clipboard/index.ts | 60 + .../directives/el-draggable-dialog/index.ts | 75 + vueJs/src/directives/index.ts | 4 + vueJs/src/directives/permission/index.ts | 20 + vueJs/src/directives/waves/index.ts | 46 + vueJs/src/directives/waves/waves.css | 26 + vueJs/src/filters/index.ts | 17 + vueJs/src/icons/README.md | 13 + vueJs/src/icons/components/404.ts | 12 + vueJs/src/icons/components/back-top.ts | 12 + vueJs/src/icons/components/bug.ts | 12 + vueJs/src/icons/components/chart.ts | 12 + vueJs/src/icons/components/clipboard.ts | 12 + vueJs/src/icons/components/component.ts | 12 + vueJs/src/icons/components/dashboard.ts | 12 + vueJs/src/icons/components/documentation.ts | 12 + vueJs/src/icons/components/drag.ts | 12 + vueJs/src/icons/components/edit.ts | 12 + vueJs/src/icons/components/education.ts | 12 + vueJs/src/icons/components/email.ts | 12 + vueJs/src/icons/components/example.ts | 12 + vueJs/src/icons/components/excel.ts | 12 + vueJs/src/icons/components/exit-fullscreen.ts | 12 + vueJs/src/icons/components/eye-off.ts | 12 + vueJs/src/icons/components/eye-on.ts | 12 + vueJs/src/icons/components/form.ts | 12 + vueJs/src/icons/components/fullscreen.ts | 12 + vueJs/src/icons/components/guide-2.ts | 12 + vueJs/src/icons/components/guide.ts | 12 + vueJs/src/icons/components/hamburger.ts | 12 + vueJs/src/icons/components/icon.ts | 12 + vueJs/src/icons/components/index.ts | 53 + vueJs/src/icons/components/international.ts | 12 + vueJs/src/icons/components/language.ts | 12 + vueJs/src/icons/components/like.ts | 12 + vueJs/src/icons/components/link.ts | 12 + vueJs/src/icons/components/list.ts | 12 + vueJs/src/icons/components/lock.ts | 12 + vueJs/src/icons/components/manager.ts | 12 + vueJs/src/icons/components/message.ts | 12 + vueJs/src/icons/components/money.ts | 12 + vueJs/src/icons/components/nested.ts | 12 + vueJs/src/icons/components/password.ts | 12 + vueJs/src/icons/components/pdf.ts | 12 + vueJs/src/icons/components/people.ts | 12 + vueJs/src/icons/components/peoples.ts | 12 + vueJs/src/icons/components/qq.ts | 12 + vueJs/src/icons/components/role.ts | 12 + vueJs/src/icons/components/search.ts | 12 + vueJs/src/icons/components/shopping.ts | 12 + vueJs/src/icons/components/size.ts | 12 + vueJs/src/icons/components/skill.ts | 12 + vueJs/src/icons/components/star.ts | 12 + vueJs/src/icons/components/tab.ts | 12 + vueJs/src/icons/components/table.ts | 12 + vueJs/src/icons/components/theme.ts | 12 + vueJs/src/icons/components/tree-table.ts | 12 + vueJs/src/icons/components/tree.ts | 12 + vueJs/src/icons/components/user.ts | 12 + vueJs/src/icons/components/wechat.ts | 12 + vueJs/src/icons/components/zip.ts | 12 + vueJs/src/icons/svg/404.svg | 3 + vueJs/src/icons/svg/back-top.svg | 4 + vueJs/src/icons/svg/bug.svg | 3 + vueJs/src/icons/svg/chart.svg | 3 + vueJs/src/icons/svg/clipboard.svg | 3 + vueJs/src/icons/svg/component.svg | 3 + vueJs/src/icons/svg/dashboard.svg | 3 + vueJs/src/icons/svg/documentation.svg | 3 + vueJs/src/icons/svg/drag.svg | 3 + vueJs/src/icons/svg/edit.svg | 4 + vueJs/src/icons/svg/education.svg | 3 + vueJs/src/icons/svg/email.svg | 4 + vueJs/src/icons/svg/example.svg | 3 + vueJs/src/icons/svg/excel.svg | 4 + vueJs/src/icons/svg/exit-fullscreen.svg | 3 + vueJs/src/icons/svg/eye-off.svg | 3 + vueJs/src/icons/svg/eye-on.svg | 6 + vueJs/src/icons/svg/form.svg | 3 + vueJs/src/icons/svg/fullscreen.svg | 3 + vueJs/src/icons/svg/guide-2.svg | 3 + vueJs/src/icons/svg/guide.svg | 3 + vueJs/src/icons/svg/hamburger.svg | 3 + vueJs/src/icons/svg/icon.svg | 3 + vueJs/src/icons/svg/international.svg | 3 + vueJs/src/icons/svg/language.svg | 4 + vueJs/src/icons/svg/like.svg | 3 + vueJs/src/icons/svg/link.svg | 5 + vueJs/src/icons/svg/list.svg | 3 + vueJs/src/icons/svg/lock.svg | 3 + vueJs/src/icons/svg/manager.svg | 1 + vueJs/src/icons/svg/message.svg | 3 + vueJs/src/icons/svg/money.svg | 3 + vueJs/src/icons/svg/nested.svg | 3 + vueJs/src/icons/svg/password.svg | 3 + vueJs/src/icons/svg/pdf.svg | 3 + vueJs/src/icons/svg/people.svg | 3 + vueJs/src/icons/svg/peoples.svg | 4 + vueJs/src/icons/svg/qq.svg | 3 + vueJs/src/icons/svg/role.svg | 1 + vueJs/src/icons/svg/search.svg | 3 + vueJs/src/icons/svg/shopping.svg | 3 + vueJs/src/icons/svg/size.svg | 3 + vueJs/src/icons/svg/skill.svg | 3 + vueJs/src/icons/svg/star.svg | 3 + vueJs/src/icons/svg/tab.svg | 3 + vueJs/src/icons/svg/table.svg | 4 + vueJs/src/icons/svg/theme.svg | 3 + vueJs/src/icons/svg/tree-table.svg | 3 + vueJs/src/icons/svg/tree.svg | 3 + vueJs/src/icons/svg/user.svg | 3 + vueJs/src/icons/svg/wechat.svg | 4 + vueJs/src/icons/svg/zip.svg | 3 + vueJs/src/lang/en.ts | 176 + vueJs/src/lang/es.ts | 175 + vueJs/src/lang/index.ts | 67 + vueJs/src/lang/ja.ts | 175 + vueJs/src/lang/ko.ts | 175 + vueJs/src/lang/zh.ts | 362 + vueJs/src/layout/components/AppMain.vue | 57 + vueJs/src/layout/components/Navbar/index.vue | 192 + .../src/layout/components/Settings/index.vue | 125 + .../layout/components/Sidebar/SidebarItem.vue | 183 + .../components/Sidebar/SidebarItemLink.vue | 30 + .../layout/components/Sidebar/SidebarLogo.vue | 98 + vueJs/src/layout/components/Sidebar/index.vue | 130 + .../layout/components/TagsView/ScrollPane.vue | 87 + .../src/layout/components/TagsView/index.vue | 339 + vueJs/src/layout/components/index.ts | 5 + vueJs/src/layout/index.vue | 172 + vueJs/src/layout/mixin/resize.ts | 55 + vueJs/src/main.ts | 57 + vueJs/src/permission.ts | 79 + .../components/ServiceWorkerUpdatePopup.vue | 67 + vueJs/src/pwa/register-service-worker.ts | 42 + vueJs/src/pwa/service-worker.js | 13 + vueJs/src/router/index.ts | 379 + vueJs/src/router/modules/charts.ts | 44 + vueJs/src/router/modules/components.ts | 101 + vueJs/src/router/modules/nested.ts | 65 + vueJs/src/router/modules/table.ts | 41 + vueJs/src/settings.ts | 26 + vueJs/src/shims.d.ts | 27 + vueJs/src/store/index.ts | 24 + vueJs/src/store/modules/app.ts | 93 + vueJs/src/store/modules/error-log.ts | 40 + vueJs/src/store/modules/permission.ts | 83 + vueJs/src/store/modules/role.ts | 24 + vueJs/src/store/modules/settings.ts | 38 + vueJs/src/store/modules/tags-view.ts | 141 + vueJs/src/store/modules/user.ts | 127 + vueJs/src/styles/_mixins.scss | 8 + vueJs/src/styles/_svgicon.scss | 31 + vueJs/src/styles/_transition.scss | 49 + vueJs/src/styles/_variables.scss | 34 + vueJs/src/styles/_variables.scss.d.ts | 9 + vueJs/src/styles/element-variables.scss | 25 + vueJs/src/styles/element-variables.scss.d.ts | 7 + vueJs/src/styles/index.scss | 173 + vueJs/src/utils/clipboard.ts | 30 + vueJs/src/utils/cookies.ts | 26 + vueJs/src/utils/error-log.ts | 25 + vueJs/src/utils/excel.ts | 225 + vueJs/src/utils/index.ts | 123 + vueJs/src/utils/permission.ts | 15 + vueJs/src/utils/request.ts | 80 + vueJs/src/utils/scroll-to.ts | 50 + vueJs/src/utils/sessions.ts | 5 + vueJs/src/utils/validate.ts | 15 + vueJs/src/utils/zip.ts | 21 + vueJs/src/views/.gitignore | 1 + .../views/admin/apigateway/aggregateRoute.vue | 0 .../components/DictionaryInputTag.vue | 226 + .../components/GlobalCreateOrEditForm.vue | 455 + .../components/HostAndPortInputTag.vue | 218 + .../components/RouteCreateOrEditForm.vue | 596 + .../components/RouteGroupCreateOrEditForm.vue | 149 + .../views/admin/apigateway/dynamicRoute.vue | 0 vueJs/src/views/admin/apigateway/global.vue | 251 + vueJs/src/views/admin/apigateway/group.vue | 278 + vueJs/src/views/admin/apigateway/route.vue | 278 + vueJs/src/views/admin/roles/index.vue | 329 + vueJs/src/views/admin/settings/index.vue | 39 + vueJs/src/views/admin/tenants/index.vue | 2 + .../admin/users/components/UserProfile.vue | 362 + vueJs/src/views/admin/users/index.vue | 328 + vueJs/src/views/charts/bar-chart.vue | 29 + vueJs/src/views/charts/line-chart.vue | 29 + vueJs/src/views/charts/mixed-chart.vue | 29 + vueJs/src/views/clipboard/index.vue | 56 + .../views/components-demo/avatar-upload.vue | 74 + .../src/views/components-demo/back-to-top.vue | 158 + vueJs/src/views/components-demo/count-to.vue | 288 + .../components-demo/draggable-dialog.vue | 87 + .../components-demo/draggable-kanban.vue | 91 + .../views/components-demo/draggable-list.vue | 46 + .../components-demo/draggable-select.vue | 58 + vueJs/src/views/components-demo/dropzone.vue | 42 + .../src/views/components-demo/json-editor.vue | 44 + vueJs/src/views/components-demo/markdown.vue | 135 + vueJs/src/views/components-demo/mixin.vue | 335 + .../src/views/components-demo/split-pane.vue | 82 + vueJs/src/views/components-demo/sticky.vue | 168 + vueJs/src/views/components-demo/tinymce.vue | 58 + .../dashboard/admin/components/BarChart.vue | 92 + .../dashboard/admin/components/BoxCard.vue | 137 + .../dashboard/admin/components/LineChart.vue | 121 + .../dashboard/admin/components/PanelGroup.vue | 250 + .../dashboard/admin/components/PieChart.vue | 69 + .../dashboard/admin/components/RadarChart.vue | 104 + .../admin/components/TodoList/Todo.vue | 92 + .../admin/components/TodoList/index.vue | 528 + .../admin/components/TransactionTable.vue | 71 + vueJs/src/views/dashboard/admin/index.vue | 40 + vueJs/src/views/dashboard/editor/index.vue | 49 + vueJs/src/views/dashboard/index.vue | 33 + .../views/error-log/components/ErrorTestA.vue | 16 + .../views/error-log/components/ErrorTestB.vue | 16 + vueJs/src/views/error-log/index.vue | 41 + vueJs/src/views/error-page/401.vue | 129 + vueJs/src/views/error-page/404.vue | 283 + .../example/components/ArticleDetail.vue | 396 + .../example/components/Dropdown/Comment.vue | 48 + .../example/components/Dropdown/Platform.vue | 51 + .../example/components/Dropdown/SourceUrl.vue | 50 + .../example/components/Dropdown/index.ts | 3 + .../src/views/example/components/Warning.vue | 18 + vueJs/src/views/example/create.vue | 16 + vueJs/src/views/example/edit.vue | 16 + vueJs/src/views/example/list.vue | 158 + .../excel/components/AutoWidthOption.vue | 38 + .../views/excel/components/BookTypeOption.vue | 37 + .../views/excel/components/FilenameOption.vue | 33 + vueJs/src/views/excel/export-excel.vue | 138 + vueJs/src/views/excel/merge-header.vue | 114 + vueJs/src/views/excel/select-excel.vue | 139 + vueJs/src/views/excel/upload-excel.vue | 54 + vueJs/src/views/guide/index.vue | 43 + vueJs/src/views/guide/steps.ts | 53 + vueJs/src/views/i18n-demo/index.vue | 253 + vueJs/src/views/i18n-demo/local.ts | 102 + vueJs/src/views/icons/element-icons.ts | 74 + vueJs/src/views/icons/index.vue | 137 + vueJs/src/views/icons/iview-icons.ts | 12 + vueJs/src/views/icons/svg-icons.ts | 11 + vueJs/src/views/login/auth-redirect.vue | 20 + .../views/login/components/SocialSignin.vue | 87 + vueJs/src/views/login/index.vue | 339 + vueJs/src/views/nested/menu1/index.vue | 24 + .../src/views/nested/menu1/menu1-1/index.vue | 20 + .../src/views/nested/menu1/menu1-2/index.vue | 25 + .../nested/menu1/menu1-2/menu1-2-1/index.vue | 18 + .../nested/menu1/menu1-2/menu1-2-2/index.vue | 18 + .../src/views/nested/menu1/menu1-3/index.vue | 18 + vueJs/src/views/nested/menu2/index.vue | 17 + vueJs/src/views/pdf/content.ts | 58 + vueJs/src/views/pdf/download.vue | 198 + vueJs/src/views/pdf/index.vue | 24 + .../permission/components/SwitchRoles.vue | 36 + vueJs/src/views/permission/directive.vue | 168 + vueJs/src/views/permission/page.vue | 22 + vueJs/src/views/permission/role.vue | 363 + .../src/views/profile/components/Account.vue | 38 + .../src/views/profile/components/Activity.vue | 199 + .../src/views/profile/components/Timeline.vue | 49 + .../src/views/profile/components/UserCard.vue | 148 + vueJs/src/views/profile/index.vue | 107 + vueJs/src/views/redirect/index.vue | 18 + vueJs/src/views/tab/components/TabPane.vue | 123 + vueJs/src/views/tab/index.vue | 77 + vueJs/src/views/table/complex-table.vue | 569 + vueJs/src/views/table/draggable-table.vue | 196 + .../components/FixedHeaderTable.vue | 78 + .../components/UnfixedHeaderTable.vue | 66 + vueJs/src/views/table/dynamic-table/index.vue | 28 + vueJs/src/views/table/inline-edit-table.vue | 187 + vueJs/src/views/theme/index.vue | 142 + vueJs/src/views/zip/index.vue | 116 + .../tests/unit/components/Breadcrumb.spec.ts | 110 + vueJs/tests/unit/utils/parseTime.spec.ts | 39 + vueJs/tests/unit/utils/validate.spec.ts | 15 + vueJs/tsconfig.json | 41 + vueJs/vue.config.github.js | 115 + 1797 files changed, 246073 insertions(+) create mode 100644 .gitignore create mode 100644 README.en.md create mode 100644 README.md create mode 100644 aspnet-core/.gitignore create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayApplicationContractsModule.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayPermissionDefinitionProvider.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayPermissions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Localization/ApplicationContracts/en.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Localization/ApplicationContracts/zh-Hans.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/AggregateRouteGetByAppIdInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/AggregateRouteGetByPagedInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/AggregateReRouteDtoBase.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/DynamicReRouteDtoBase.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/GlobalConfigurationDtoBase.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/ReRouteDtoBase.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/DynamicRouteGetByAppIdInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalCreateDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalGetByAppIdInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalGetByPagedInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalUpdateDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteCreateDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByAppIdInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByIdInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByNameInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByPagedInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteUpdateDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AggregateReRouteConfigDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AggregateReRouteDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AuthenticationOptionsDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/CacheOptionsDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/DynamicReRouteDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/GlobalConfigurationDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/HostAndPortDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/HttpHandlerOptionsDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/LoadBalancerOptionsDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/QosOptionsDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/RateLimitOptionsDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/RateLimitRuleDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/ReRouteDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/SecurityOptionsDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/ServiceDiscoveryProviderDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupAppIdsDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupCreateDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupGetByAppIdInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupGetByPagedInputDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupUpdateDto.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IAggregateReRouteAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IDynamicReRouteAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IGlobalConfigurationAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IReRouteAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IRouteGroupAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.deps.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.AssemblyInfo.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.assets.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.CopyComplete create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.CoreCompileInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.g.props create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/project.assets.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/project.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN.ApiGateway.Application.csproj create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationAutoMapperProfile.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationModule.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationServiceBase.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/AggregateReRouteAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/DynamicReRouteAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/GlobalConfigurationAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/ReRouteAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/RouteGroupAppService.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.deps.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.AssemblyInfo.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.assets.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csproj.CopyComplete create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.g.props create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/project.assets.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/project.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/ApiGatewayConsts.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/ApiGatewayDomainSharedModule.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/EventBus/ApigatewayConfigChangeCommand.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/ApiGatewayResource.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/DomainShared/en.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/DomainShared/zh-Hans.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Ocelot/RouteGroupAppKey.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Settings/ApiGatewaySettingDefinitionProvider.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Settings/ApiGatewaySettingNames.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/Newtonsoft/Json/HexLongConverter.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.deps.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.AssemblyInfo.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.assets.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csproj.CoreCompileInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.g.props create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/project.assets.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/project.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN.ApiGateway.Domain.csproj create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/ApiGatewayDomainModule.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Data/Filter/IActivation.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/AggregateReRoute.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/AggregateReRouteConfig.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/IAggregateReRouteRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/AuthenticationOptions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/CacheOptions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Dynamic/DynamicReRoute.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Dynamic/IDynamicReRouteRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Global/GlobalConfiguration.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Global/IGlobalConfigRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Headers.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/HostAndPort.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/HttpHandlerOptions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/LoadBalancerOptions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/QoSOptions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RateLimitOptions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RateLimitRule.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Route/IReRouteRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Route/ReRoute.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/IRouteGroupChecker.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/IRouteGroupRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/RouteGroup.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/RouteGroupChecker.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/SecurityOptions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/ServiceDiscoveryProvider.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Snowflake/ISnowflakeIdGenerator.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/System/Linq/IQueryableExtensions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.deps.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.AssemblyInfo.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.assets.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csproj.CopyComplete create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.g.props create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/project.assets.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/project.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN.ApiGateway.EntityFrameworkCore.csproj create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayDbContext.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayDbContextModelCreatingExtensions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayEfCoreRepositoryBase.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayEntityFrameworkCoreModule.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayModelBuilderConfigurationOptions.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreAggregateReRouteRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreDynamicReRouteRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreGlobalConfigRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreReRouteRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreRouteGroupRepository.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.deps.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfo.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.assets.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.CopyComplete create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.g.props create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/project.assets.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/project.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/LINGYUN.ApiGateway.HttpApi.Client.csproj create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/LINGYUN/ApiGateway/ApiGatewayHttpApiClientModule.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.deps.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfo.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.assets.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.CopyComplete create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.CoreCompileInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.g.props create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/project.assets.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/project.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN.ApiGateway.HttpApi.csproj create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/ApiGatewayControllerBase.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/ApiGatewayHttpApiModule.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/AggregateReRouteController.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/DynamicReRouteController.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/GlobalConfigurationController.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/ReRouteController.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/RouteGroupController.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Application.Contracts.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Application.Contracts.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Domain.Shared.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Domain.Shared.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.deps.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Memory.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Console.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Core.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Memory.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encodings.Web.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/mscorlib.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/netstandard.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.assets.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csproj.CopyComplete create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.dll create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.pdb create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.assets.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.cache create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.g.props create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/project.assets.json create mode 100644 aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/project.nuget.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.deps.json create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfo.cs create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.assets.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.CoreCompileInputs.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.g.props create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/project.assets.json create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/project.nuget.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN.Abp.PermissionManagement.Application.csproj create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN/Abp/PermissionManagement/AbpPermissionManagementApplicationModule.cs create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN/Abp/PermissionManagement/PermissionAppService.cs create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.deps.json create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.dll create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.pdb create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.AssemblyInfo.cs create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.assets.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.dll create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.pdb create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.g.props create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/project.assets.json create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/project.nuget.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/Class1.cs create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/LINGYUN.Abp.PermissionManagement.Domain.csproj create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/LINGYUN/Abp/PermissionManagement/PermissionManagementProvider.cs create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.AssemblyInfo.cs create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.assets.cache create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.g.props create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/project.assets.json create mode 100644 aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/project.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementApplicationContractsModule.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementPermissionProvider.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementPermissions.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementRemoteServiceConsts.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/AccountSettingsDto.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/IdentitySettingsDto.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/LocalizationSettingsDto.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/SettingDto.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/UpdateSettingDto.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/UpdateSettingsDto.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/ISettingAppService.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/en.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/zh-CN.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/zh-Hans.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.deps.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.deps.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.assets.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.CoreCompileInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.assets.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.props create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.props create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/project.assets.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/project.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN.Abp.SettingManagement.Application.csproj create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/AbpSettingManagementApplicationModule.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/SettingAppService.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.deps.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.deps.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.AssemblyInfo.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.assets.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.CopyComplete create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.CoreCompileInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.AssemblyInfo.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.assets.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csproj.CopyComplete create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.g.props create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.g.props create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/project.assets.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/project.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN.Abp.SettingManagement.HttpApi.csproj create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN/Abp/SettingManagement/AbpSettingManagementHttpApiModule.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN/Abp/SettingManagement/SettingController.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.deps.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.Contracts.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.deps.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Console.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Core.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Memory.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encodings.Web.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/mscorlib.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/netstandard.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfo.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.assets.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.CopyComplete create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.CoreCompileInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfo.cs create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.assets.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csproj.CopyComplete create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csproj.FileListAbsolute.txt create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.dll create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.pdb create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.g.props create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.cache create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.dgspec.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.g.props create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.g.targets create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/project.assets.json create mode 100644 aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/project.nuget.cache create mode 100644 aspnet-core/services/account/AuthServer.Host/.gitignore create mode 100644 aspnet-core/services/account/AuthServer.Host/AuthIdentityServerModule.cs create mode 100644 aspnet-core/services/account/AuthServer.Host/AuthServer.Host.csproj create mode 100644 aspnet-core/services/account/AuthServer.Host/IdentityServer/IdentityServerDataSeedContributor.cs create mode 100644 aspnet-core/services/account/AuthServer.Host/Pages/Index.cshtml create mode 100644 aspnet-core/services/account/AuthServer.Host/Pages/Index.cshtml.cs create mode 100644 aspnet-core/services/account/AuthServer.Host/Pages/_ViewImports.cshtml create mode 100644 aspnet-core/services/account/AuthServer.Host/Program.cs create mode 100644 aspnet-core/services/account/AuthServer.Host/Properties/launchSettings.json create mode 100644 aspnet-core/services/account/AuthServer.Host/Startup.cs create mode 100644 aspnet-core/services/account/AuthServer.Host/abp.resourcemapping.js create mode 100644 aspnet-core/services/account/AuthServer.Host/gulpfile.js create mode 100644 aspnet-core/services/account/AuthServer.Host/package.json create mode 100644 aspnet-core/services/account/AuthServer.Host/tempkey.rsa create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/css/all.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/css/v4-shims.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/core/abp.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/core/abp.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/jquery/abp.jquery.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.js.map create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.css.map create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker-en-CA.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap/css/bootstrap.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/datatables.net-bs4/css/dataTables.bootstrap4.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/datatables.net-bs4/js/dataTables.bootstrap4.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/datatables.net/js/jquery.dataTables.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-form/jquery.form.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/jquery.validate.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ar.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ar.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_az.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_az.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_bg.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_bg.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_bn_BD.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_bn_BD.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ca.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ca.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_cs.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_cs.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_da.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_da.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_de.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_de.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_el.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_el.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_es.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_es.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_es_AR.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_es_AR.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_es_PE.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_es_PE.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_et.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_et.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_eu.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_eu.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_fa.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_fa.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_fi.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_fi.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_fr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_fr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ge.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ge.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_gl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_gl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_he.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_he.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_hr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_hr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_hu.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_hu.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_hy_AM.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_hy_AM.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_id.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_id.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_is.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_is.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_it.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_it.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ja.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ja.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ka.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ka.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_kk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_kk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ko.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ko.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_lt.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_lt.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_lv.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_lv.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_mk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_mk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_my.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_my.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_nl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_nl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_no.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_no.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_pl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_pl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_pt_BR.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_pt_BR.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_pt_PT.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_pt_PT.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ro.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ro.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ru.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ru.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sd.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sd.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_si.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_si.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sr_lat.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sr_lat.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sv.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_sv.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_th.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_th.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_tj.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_tj.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_tr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_tr.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_uk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_uk.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ur.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_ur.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_vi.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_vi.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_zh.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_zh.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_zh_TW.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/messages_zh_TW.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_de.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_de.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_es_CL.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_es_CL.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_fi.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_fi.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_it.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_it.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_nl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_nl.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_pt.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery-validation/localization/methods_pt.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/jquery/jquery.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/lodash/lodash.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/luxon/luxon.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/luxon/luxon.js.map create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/luxon/luxon.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/luxon/luxon.min.js.map create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/mCSB_buttons.png create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/package.json create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/malihu-custom-scrollbar-plugin/readme.md create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/css/select2.min.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/af.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ar.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/az.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/bg.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/bn.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/bs.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ca.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/cs.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/da.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/de.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/dsb.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/el.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/en.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/es.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/et.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/eu.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/fa.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/fi.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/fr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/gl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/he.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/hi.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/hr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/hsb.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/hu.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/hy.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/id.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/is.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/it.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ja.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ka.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/km.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ko.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/lt.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/lv.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/mk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ms.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/nb.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ne.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/nl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/pl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ps.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/pt-BR.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/pt.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ro.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/ru.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/sk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/sl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/sq.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/sr-Cyrl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/sr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/sv.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/th.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/tk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/tr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/uk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/vi.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/zh-CN.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/i18n/zh-TW.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/select2-bootstrap-modal-patch.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/select2.full.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/select2/js/select2.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/sweetalert/sweetalert.min.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/jquery.timeago.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/README.md create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.af.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.am.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.ar.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.az-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.az.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.be.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.bg.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.bs.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.ca.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.cs.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.cy.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.da.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.de-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.de.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.dv.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.el.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.en-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.en.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.es-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.es.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.et.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.eu.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.fa-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.fa.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.fi.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.fr-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.fr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.gl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.he.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.hr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.hu.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.hy.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.id.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.is.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.it-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.it.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.ja.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.jv.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.ko.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.ky.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.lt.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.lv.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.mk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.nl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.no.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.pl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.pt-br-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.pt-br.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.pt-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.pt.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.ro.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.rs.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.ru.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.rw.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.si.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.sk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.sl.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.sq.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.sr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.sv.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.th.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.tr-short.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.tr.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.uk.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.ur.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.uz.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.vi.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.zh-CN.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/timeago/locales/jquery.timeago.zh-TW.js create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/toastr/toastr.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/toastr/toastr.js.map create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/toastr/toastr.min.css create mode 100644 aspnet-core/services/account/AuthServer.Host/wwwroot/libs/toastr/toastr.min.js create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/.gitignore create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/Dockerfile create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/LINGYUN.ApiGateway.Host.csproj create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/LINGYUN/ApiGateway/ApiGatewayHostModule.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/LINGYUN/ApiGateway/ApiGatewayMapperProfile.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/LINGYUN/ApiGateway/ApiGatewayOptions.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/LINGYUN/ApiGateway/EventBus/IOcelotConfigurationChangedEvent.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/LINGYUN/ApiGateway/EventBus/OcelotConfigurationChangedEvent.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/Ocelot/Configuration/Repository/ApiHttpClientFileConfigurationRepository.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/Ocelot/Ocelot/Extenssions/OcelotMiddlewareExtensions.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/Program.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/Properties/launchSettings.json create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/Startup.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/.gitignore create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/ApiGatewayHttpApiHostAutoMapperProfile.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/ApiGatewayHttpApiHostModule.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Controllers/HomeController.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Dockerfile create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/EntityFrameworkCore/HttpApiHostMigrationsDbContext.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/EntityFrameworkCore/HttpApiHostMigrationsDbContextFactory.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/LINGYUN.ApiGateway.HttpApi.Host.csproj create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Migrations/20200513034946_Migration-ApiGateway-MySql.Designer.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Migrations/20200513034946_Migration-ApiGateway-MySql.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Migrations/20200513111130_Rename-Router-To-RouteGroup.Designer.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Migrations/20200513111130_Rename-Router-To-RouteGroup.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Migrations/HttpApiHostMigrationsDbContextModelSnapshot.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Program.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Properties/launchSettings.json create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Snowflake/CAPSnowflakeIdGenerator.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Startup.cs create mode 100644 aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Volo/Abp/Authorization/Permissions/PermissionChecker.cs create mode 100644 vueJs/.browserslistrc create mode 100644 vueJs/.circleci/config.yml create mode 100644 vueJs/.editorconfig create mode 100644 vueJs/.env.Github.production create mode 100644 vueJs/.env.development create mode 100644 vueJs/.env.staging create mode 100644 vueJs/.eslintignore create mode 100644 vueJs/.eslintrc.js create mode 100644 vueJs/.gitignore create mode 100644 vueJs/LICENSE create mode 100644 vueJs/README.en.md create mode 100644 vueJs/README.md create mode 100644 vueJs/babel.config.js create mode 100644 vueJs/cypress.json create mode 100644 vueJs/demo/dashboard.png create mode 100644 vueJs/images/userLogin.png create mode 100644 vueJs/images/userPermissions.png create mode 100644 vueJs/images/userRoles.png create mode 100644 vueJs/jest.config.js create mode 100644 vueJs/mock/api.ts create mode 100644 vueJs/mock/articles.ts create mode 100644 vueJs/mock/mock-server.ts create mode 100644 vueJs/mock/role/index.ts create mode 100644 vueJs/mock/role/routes.ts create mode 100644 vueJs/mock/security.ts create mode 100644 vueJs/mock/swagger.yml create mode 100644 vueJs/mock/transactions.ts create mode 100644 vueJs/mock/tsconfig.json create mode 100644 vueJs/mock/users.ts create mode 100644 vueJs/package-lock.json create mode 100644 vueJs/package.json create mode 100644 vueJs/postcss.config.js create mode 100644 vueJs/public/favicon.ico create mode 100644 vueJs/public/img/icons/android-chrome-192x192.png create mode 100644 vueJs/public/img/icons/android-chrome-512x512.png create mode 100644 vueJs/public/img/icons/android-chrome-maskable-192x192.png create mode 100644 vueJs/public/img/icons/android-chrome-maskable-512x512.png create mode 100644 vueJs/public/img/icons/apple-touch-icon-120x120.png create mode 100644 vueJs/public/img/icons/apple-touch-icon-152x152.png create mode 100644 vueJs/public/img/icons/apple-touch-icon-180x180.png create mode 100644 vueJs/public/img/icons/apple-touch-icon-60x60.png create mode 100644 vueJs/public/img/icons/apple-touch-icon-76x76.png create mode 100644 vueJs/public/img/icons/apple-touch-icon.png create mode 100644 vueJs/public/img/icons/favicon-16x16.png create mode 100644 vueJs/public/img/icons/favicon-32x32.png create mode 100644 vueJs/public/img/icons/msapplication-icon-144x144.png create mode 100644 vueJs/public/img/icons/mstile-150x150.png create mode 100644 vueJs/public/img/icons/safari-pinned-tab.svg create mode 100644 vueJs/public/index.html create mode 100644 vueJs/public/manifest.json create mode 100644 vueJs/public/robots.txt create mode 100644 vueJs/public/tinymce/emojis.min.js create mode 100644 vueJs/public/tinymce/langs/es.js create mode 100644 vueJs/public/tinymce/langs/ja.js create mode 100644 vueJs/public/tinymce/langs/ko_KR.js create mode 100644 vueJs/public/tinymce/langs/zh_CN.js create mode 100644 vueJs/public/tinymce/skins/content.inline.min.css create mode 100644 vueJs/public/tinymce/skins/content.min.css create mode 100644 vueJs/public/tinymce/skins/content.mobile.min.css create mode 100644 vueJs/public/tinymce/skins/fonts/tinymce-mobile.woff create mode 100644 vueJs/public/tinymce/skins/skin.min.css create mode 100644 vueJs/public/tinymce/skins/skin.mobile.min.css create mode 100644 vueJs/src/App.vue create mode 100644 vueJs/src/api/.gitignore create mode 100644 vueJs/src/api/apigateway.ts create mode 100644 vueJs/src/api/articles.ts create mode 100644 vueJs/src/api/localization.ts create mode 100644 vueJs/src/api/permission.ts create mode 100644 vueJs/src/api/roles.ts create mode 100644 vueJs/src/api/serviceBase.ts create mode 100644 vueJs/src/api/settings.ts create mode 100644 vueJs/src/api/tenant.ts create mode 100644 vueJs/src/api/transactions.ts create mode 100644 vueJs/src/api/types.ts create mode 100644 vueJs/src/api/users.ts create mode 100644 vueJs/src/assets/401-images/401.gif create mode 100644 vueJs/src/assets/404-images/404-cloud.png create mode 100644 vueJs/src/assets/404-images/404.png create mode 100644 vueJs/src/assets/custom-theme/fonts/element-icons.ttf create mode 100644 vueJs/src/assets/custom-theme/fonts/element-icons.woff create mode 100644 vueJs/src/assets/custom-theme/index.css create mode 100644 vueJs/src/components/AvatarUpload/index.vue create mode 100644 vueJs/src/components/BackToTop/index.vue create mode 100644 vueJs/src/components/Breadcrumb/index.vue create mode 100644 vueJs/src/components/Charts/BarChart.vue create mode 100644 vueJs/src/components/Charts/LineChart.vue create mode 100644 vueJs/src/components/Charts/MixedChart.vue create mode 100644 vueJs/src/components/Charts/mixins/resize.ts create mode 100644 vueJs/src/components/DraggableKanban/index.vue create mode 100644 vueJs/src/components/DraggableList/index.vue create mode 100644 vueJs/src/components/DraggableSelect/index.vue create mode 100644 vueJs/src/components/DropdownMenu/index.vue create mode 100644 vueJs/src/components/Dropzone/index.vue create mode 100644 vueJs/src/components/ErrorLog/index.vue create mode 100644 vueJs/src/components/GithubCorner/index.vue create mode 100644 vueJs/src/components/Hamburger/index.vue create mode 100644 vueJs/src/components/HeaderSearch/index.vue create mode 100644 vueJs/src/components/InputTag/index.vue create mode 100644 vueJs/src/components/JsonEditor/index.vue create mode 100644 vueJs/src/components/LangSelect/index.vue create mode 100644 vueJs/src/components/MarkdownEditor/default-options.ts create mode 100644 vueJs/src/components/MarkdownEditor/index.vue create mode 100644 vueJs/src/components/MaterialInput/index.vue create mode 100644 vueJs/src/components/MessageView/index.vue create mode 100644 vueJs/src/components/MessageView/item.vue create mode 100644 vueJs/src/components/Pagination/index.vue create mode 100644 vueJs/src/components/PanThumb/index.vue create mode 100644 vueJs/src/components/PermissionTree/index.vue create mode 100644 vueJs/src/components/RightPanel/index.vue create mode 100644 vueJs/src/components/Screenfull/index.vue create mode 100644 vueJs/src/components/SizeSelect/index.vue create mode 100644 vueJs/src/components/Sticky/index.vue create mode 100644 vueJs/src/components/TextHoverEffect/Mallki.vue create mode 100644 vueJs/src/components/ThemePicker/index.vue create mode 100644 vueJs/src/components/Tinymce/components/EditorImage.vue create mode 100644 vueJs/src/components/Tinymce/config.ts create mode 100644 vueJs/src/components/Tinymce/index.vue create mode 100644 vueJs/src/components/UploadExcel/index.vue create mode 100644 vueJs/src/components/UploadImage/index.vue create mode 100644 vueJs/src/directives/clipboard/index.ts create mode 100644 vueJs/src/directives/el-draggable-dialog/index.ts create mode 100644 vueJs/src/directives/index.ts create mode 100644 vueJs/src/directives/permission/index.ts create mode 100644 vueJs/src/directives/waves/index.ts create mode 100644 vueJs/src/directives/waves/waves.css create mode 100644 vueJs/src/filters/index.ts create mode 100644 vueJs/src/icons/README.md create mode 100644 vueJs/src/icons/components/404.ts create mode 100644 vueJs/src/icons/components/back-top.ts create mode 100644 vueJs/src/icons/components/bug.ts create mode 100644 vueJs/src/icons/components/chart.ts create mode 100644 vueJs/src/icons/components/clipboard.ts create mode 100644 vueJs/src/icons/components/component.ts create mode 100644 vueJs/src/icons/components/dashboard.ts create mode 100644 vueJs/src/icons/components/documentation.ts create mode 100644 vueJs/src/icons/components/drag.ts create mode 100644 vueJs/src/icons/components/edit.ts create mode 100644 vueJs/src/icons/components/education.ts create mode 100644 vueJs/src/icons/components/email.ts create mode 100644 vueJs/src/icons/components/example.ts create mode 100644 vueJs/src/icons/components/excel.ts create mode 100644 vueJs/src/icons/components/exit-fullscreen.ts create mode 100644 vueJs/src/icons/components/eye-off.ts create mode 100644 vueJs/src/icons/components/eye-on.ts create mode 100644 vueJs/src/icons/components/form.ts create mode 100644 vueJs/src/icons/components/fullscreen.ts create mode 100644 vueJs/src/icons/components/guide-2.ts create mode 100644 vueJs/src/icons/components/guide.ts create mode 100644 vueJs/src/icons/components/hamburger.ts create mode 100644 vueJs/src/icons/components/icon.ts create mode 100644 vueJs/src/icons/components/index.ts create mode 100644 vueJs/src/icons/components/international.ts create mode 100644 vueJs/src/icons/components/language.ts create mode 100644 vueJs/src/icons/components/like.ts create mode 100644 vueJs/src/icons/components/link.ts create mode 100644 vueJs/src/icons/components/list.ts create mode 100644 vueJs/src/icons/components/lock.ts create mode 100644 vueJs/src/icons/components/manager.ts create mode 100644 vueJs/src/icons/components/message.ts create mode 100644 vueJs/src/icons/components/money.ts create mode 100644 vueJs/src/icons/components/nested.ts create mode 100644 vueJs/src/icons/components/password.ts create mode 100644 vueJs/src/icons/components/pdf.ts create mode 100644 vueJs/src/icons/components/people.ts create mode 100644 vueJs/src/icons/components/peoples.ts create mode 100644 vueJs/src/icons/components/qq.ts create mode 100644 vueJs/src/icons/components/role.ts create mode 100644 vueJs/src/icons/components/search.ts create mode 100644 vueJs/src/icons/components/shopping.ts create mode 100644 vueJs/src/icons/components/size.ts create mode 100644 vueJs/src/icons/components/skill.ts create mode 100644 vueJs/src/icons/components/star.ts create mode 100644 vueJs/src/icons/components/tab.ts create mode 100644 vueJs/src/icons/components/table.ts create mode 100644 vueJs/src/icons/components/theme.ts create mode 100644 vueJs/src/icons/components/tree-table.ts create mode 100644 vueJs/src/icons/components/tree.ts create mode 100644 vueJs/src/icons/components/user.ts create mode 100644 vueJs/src/icons/components/wechat.ts create mode 100644 vueJs/src/icons/components/zip.ts create mode 100644 vueJs/src/icons/svg/404.svg create mode 100644 vueJs/src/icons/svg/back-top.svg create mode 100644 vueJs/src/icons/svg/bug.svg create mode 100644 vueJs/src/icons/svg/chart.svg create mode 100644 vueJs/src/icons/svg/clipboard.svg create mode 100644 vueJs/src/icons/svg/component.svg create mode 100644 vueJs/src/icons/svg/dashboard.svg create mode 100644 vueJs/src/icons/svg/documentation.svg create mode 100644 vueJs/src/icons/svg/drag.svg create mode 100644 vueJs/src/icons/svg/edit.svg create mode 100644 vueJs/src/icons/svg/education.svg create mode 100644 vueJs/src/icons/svg/email.svg create mode 100644 vueJs/src/icons/svg/example.svg create mode 100644 vueJs/src/icons/svg/excel.svg create mode 100644 vueJs/src/icons/svg/exit-fullscreen.svg create mode 100644 vueJs/src/icons/svg/eye-off.svg create mode 100644 vueJs/src/icons/svg/eye-on.svg create mode 100644 vueJs/src/icons/svg/form.svg create mode 100644 vueJs/src/icons/svg/fullscreen.svg create mode 100644 vueJs/src/icons/svg/guide-2.svg create mode 100644 vueJs/src/icons/svg/guide.svg create mode 100644 vueJs/src/icons/svg/hamburger.svg create mode 100644 vueJs/src/icons/svg/icon.svg create mode 100644 vueJs/src/icons/svg/international.svg create mode 100644 vueJs/src/icons/svg/language.svg create mode 100644 vueJs/src/icons/svg/like.svg create mode 100644 vueJs/src/icons/svg/link.svg create mode 100644 vueJs/src/icons/svg/list.svg create mode 100644 vueJs/src/icons/svg/lock.svg create mode 100644 vueJs/src/icons/svg/manager.svg create mode 100644 vueJs/src/icons/svg/message.svg create mode 100644 vueJs/src/icons/svg/money.svg create mode 100644 vueJs/src/icons/svg/nested.svg create mode 100644 vueJs/src/icons/svg/password.svg create mode 100644 vueJs/src/icons/svg/pdf.svg create mode 100644 vueJs/src/icons/svg/people.svg create mode 100644 vueJs/src/icons/svg/peoples.svg create mode 100644 vueJs/src/icons/svg/qq.svg create mode 100644 vueJs/src/icons/svg/role.svg create mode 100644 vueJs/src/icons/svg/search.svg create mode 100644 vueJs/src/icons/svg/shopping.svg create mode 100644 vueJs/src/icons/svg/size.svg create mode 100644 vueJs/src/icons/svg/skill.svg create mode 100644 vueJs/src/icons/svg/star.svg create mode 100644 vueJs/src/icons/svg/tab.svg create mode 100644 vueJs/src/icons/svg/table.svg create mode 100644 vueJs/src/icons/svg/theme.svg create mode 100644 vueJs/src/icons/svg/tree-table.svg create mode 100644 vueJs/src/icons/svg/tree.svg create mode 100644 vueJs/src/icons/svg/user.svg create mode 100644 vueJs/src/icons/svg/wechat.svg create mode 100644 vueJs/src/icons/svg/zip.svg create mode 100644 vueJs/src/lang/en.ts create mode 100644 vueJs/src/lang/es.ts create mode 100644 vueJs/src/lang/index.ts create mode 100644 vueJs/src/lang/ja.ts create mode 100644 vueJs/src/lang/ko.ts create mode 100644 vueJs/src/lang/zh.ts create mode 100644 vueJs/src/layout/components/AppMain.vue create mode 100644 vueJs/src/layout/components/Navbar/index.vue create mode 100644 vueJs/src/layout/components/Settings/index.vue create mode 100644 vueJs/src/layout/components/Sidebar/SidebarItem.vue create mode 100644 vueJs/src/layout/components/Sidebar/SidebarItemLink.vue create mode 100644 vueJs/src/layout/components/Sidebar/SidebarLogo.vue create mode 100644 vueJs/src/layout/components/Sidebar/index.vue create mode 100644 vueJs/src/layout/components/TagsView/ScrollPane.vue create mode 100644 vueJs/src/layout/components/TagsView/index.vue create mode 100644 vueJs/src/layout/components/index.ts create mode 100644 vueJs/src/layout/index.vue create mode 100644 vueJs/src/layout/mixin/resize.ts create mode 100644 vueJs/src/main.ts create mode 100644 vueJs/src/permission.ts create mode 100644 vueJs/src/pwa/components/ServiceWorkerUpdatePopup.vue create mode 100644 vueJs/src/pwa/register-service-worker.ts create mode 100644 vueJs/src/pwa/service-worker.js create mode 100644 vueJs/src/router/index.ts create mode 100644 vueJs/src/router/modules/charts.ts create mode 100644 vueJs/src/router/modules/components.ts create mode 100644 vueJs/src/router/modules/nested.ts create mode 100644 vueJs/src/router/modules/table.ts create mode 100644 vueJs/src/settings.ts create mode 100644 vueJs/src/shims.d.ts create mode 100644 vueJs/src/store/index.ts create mode 100644 vueJs/src/store/modules/app.ts create mode 100644 vueJs/src/store/modules/error-log.ts create mode 100644 vueJs/src/store/modules/permission.ts create mode 100644 vueJs/src/store/modules/role.ts create mode 100644 vueJs/src/store/modules/settings.ts create mode 100644 vueJs/src/store/modules/tags-view.ts create mode 100644 vueJs/src/store/modules/user.ts create mode 100644 vueJs/src/styles/_mixins.scss create mode 100644 vueJs/src/styles/_svgicon.scss create mode 100644 vueJs/src/styles/_transition.scss create mode 100644 vueJs/src/styles/_variables.scss create mode 100644 vueJs/src/styles/_variables.scss.d.ts create mode 100644 vueJs/src/styles/element-variables.scss create mode 100644 vueJs/src/styles/element-variables.scss.d.ts create mode 100644 vueJs/src/styles/index.scss create mode 100644 vueJs/src/utils/clipboard.ts create mode 100644 vueJs/src/utils/cookies.ts create mode 100644 vueJs/src/utils/error-log.ts create mode 100644 vueJs/src/utils/excel.ts create mode 100644 vueJs/src/utils/index.ts create mode 100644 vueJs/src/utils/permission.ts create mode 100644 vueJs/src/utils/request.ts create mode 100644 vueJs/src/utils/scroll-to.ts create mode 100644 vueJs/src/utils/sessions.ts create mode 100644 vueJs/src/utils/validate.ts create mode 100644 vueJs/src/utils/zip.ts create mode 100644 vueJs/src/views/.gitignore create mode 100644 vueJs/src/views/admin/apigateway/aggregateRoute.vue create mode 100644 vueJs/src/views/admin/apigateway/components/DictionaryInputTag.vue create mode 100644 vueJs/src/views/admin/apigateway/components/GlobalCreateOrEditForm.vue create mode 100644 vueJs/src/views/admin/apigateway/components/HostAndPortInputTag.vue create mode 100644 vueJs/src/views/admin/apigateway/components/RouteCreateOrEditForm.vue create mode 100644 vueJs/src/views/admin/apigateway/components/RouteGroupCreateOrEditForm.vue create mode 100644 vueJs/src/views/admin/apigateway/dynamicRoute.vue create mode 100644 vueJs/src/views/admin/apigateway/global.vue create mode 100644 vueJs/src/views/admin/apigateway/group.vue create mode 100644 vueJs/src/views/admin/apigateway/route.vue create mode 100644 vueJs/src/views/admin/roles/index.vue create mode 100644 vueJs/src/views/admin/settings/index.vue create mode 100644 vueJs/src/views/admin/tenants/index.vue create mode 100644 vueJs/src/views/admin/users/components/UserProfile.vue create mode 100644 vueJs/src/views/admin/users/index.vue create mode 100644 vueJs/src/views/charts/bar-chart.vue create mode 100644 vueJs/src/views/charts/line-chart.vue create mode 100644 vueJs/src/views/charts/mixed-chart.vue create mode 100644 vueJs/src/views/clipboard/index.vue create mode 100644 vueJs/src/views/components-demo/avatar-upload.vue create mode 100644 vueJs/src/views/components-demo/back-to-top.vue create mode 100644 vueJs/src/views/components-demo/count-to.vue create mode 100644 vueJs/src/views/components-demo/draggable-dialog.vue create mode 100644 vueJs/src/views/components-demo/draggable-kanban.vue create mode 100644 vueJs/src/views/components-demo/draggable-list.vue create mode 100644 vueJs/src/views/components-demo/draggable-select.vue create mode 100644 vueJs/src/views/components-demo/dropzone.vue create mode 100644 vueJs/src/views/components-demo/json-editor.vue create mode 100644 vueJs/src/views/components-demo/markdown.vue create mode 100644 vueJs/src/views/components-demo/mixin.vue create mode 100644 vueJs/src/views/components-demo/split-pane.vue create mode 100644 vueJs/src/views/components-demo/sticky.vue create mode 100644 vueJs/src/views/components-demo/tinymce.vue create mode 100644 vueJs/src/views/dashboard/admin/components/BarChart.vue create mode 100644 vueJs/src/views/dashboard/admin/components/BoxCard.vue create mode 100644 vueJs/src/views/dashboard/admin/components/LineChart.vue create mode 100644 vueJs/src/views/dashboard/admin/components/PanelGroup.vue create mode 100644 vueJs/src/views/dashboard/admin/components/PieChart.vue create mode 100644 vueJs/src/views/dashboard/admin/components/RadarChart.vue create mode 100644 vueJs/src/views/dashboard/admin/components/TodoList/Todo.vue create mode 100644 vueJs/src/views/dashboard/admin/components/TodoList/index.vue create mode 100644 vueJs/src/views/dashboard/admin/components/TransactionTable.vue create mode 100644 vueJs/src/views/dashboard/admin/index.vue create mode 100644 vueJs/src/views/dashboard/editor/index.vue create mode 100644 vueJs/src/views/dashboard/index.vue create mode 100644 vueJs/src/views/error-log/components/ErrorTestA.vue create mode 100644 vueJs/src/views/error-log/components/ErrorTestB.vue create mode 100644 vueJs/src/views/error-log/index.vue create mode 100644 vueJs/src/views/error-page/401.vue create mode 100644 vueJs/src/views/error-page/404.vue create mode 100644 vueJs/src/views/example/components/ArticleDetail.vue create mode 100644 vueJs/src/views/example/components/Dropdown/Comment.vue create mode 100644 vueJs/src/views/example/components/Dropdown/Platform.vue create mode 100644 vueJs/src/views/example/components/Dropdown/SourceUrl.vue create mode 100644 vueJs/src/views/example/components/Dropdown/index.ts create mode 100644 vueJs/src/views/example/components/Warning.vue create mode 100644 vueJs/src/views/example/create.vue create mode 100644 vueJs/src/views/example/edit.vue create mode 100644 vueJs/src/views/example/list.vue create mode 100644 vueJs/src/views/excel/components/AutoWidthOption.vue create mode 100644 vueJs/src/views/excel/components/BookTypeOption.vue create mode 100644 vueJs/src/views/excel/components/FilenameOption.vue create mode 100644 vueJs/src/views/excel/export-excel.vue create mode 100644 vueJs/src/views/excel/merge-header.vue create mode 100644 vueJs/src/views/excel/select-excel.vue create mode 100644 vueJs/src/views/excel/upload-excel.vue create mode 100644 vueJs/src/views/guide/index.vue create mode 100644 vueJs/src/views/guide/steps.ts create mode 100644 vueJs/src/views/i18n-demo/index.vue create mode 100644 vueJs/src/views/i18n-demo/local.ts create mode 100644 vueJs/src/views/icons/element-icons.ts create mode 100644 vueJs/src/views/icons/index.vue create mode 100644 vueJs/src/views/icons/iview-icons.ts create mode 100644 vueJs/src/views/icons/svg-icons.ts create mode 100644 vueJs/src/views/login/auth-redirect.vue create mode 100644 vueJs/src/views/login/components/SocialSignin.vue create mode 100644 vueJs/src/views/login/index.vue create mode 100644 vueJs/src/views/nested/menu1/index.vue create mode 100644 vueJs/src/views/nested/menu1/menu1-1/index.vue create mode 100644 vueJs/src/views/nested/menu1/menu1-2/index.vue create mode 100644 vueJs/src/views/nested/menu1/menu1-2/menu1-2-1/index.vue create mode 100644 vueJs/src/views/nested/menu1/menu1-2/menu1-2-2/index.vue create mode 100644 vueJs/src/views/nested/menu1/menu1-3/index.vue create mode 100644 vueJs/src/views/nested/menu2/index.vue create mode 100644 vueJs/src/views/pdf/content.ts create mode 100644 vueJs/src/views/pdf/download.vue create mode 100644 vueJs/src/views/pdf/index.vue create mode 100644 vueJs/src/views/permission/components/SwitchRoles.vue create mode 100644 vueJs/src/views/permission/directive.vue create mode 100644 vueJs/src/views/permission/page.vue create mode 100644 vueJs/src/views/permission/role.vue create mode 100644 vueJs/src/views/profile/components/Account.vue create mode 100644 vueJs/src/views/profile/components/Activity.vue create mode 100644 vueJs/src/views/profile/components/Timeline.vue create mode 100644 vueJs/src/views/profile/components/UserCard.vue create mode 100644 vueJs/src/views/profile/index.vue create mode 100644 vueJs/src/views/redirect/index.vue create mode 100644 vueJs/src/views/tab/components/TabPane.vue create mode 100644 vueJs/src/views/tab/index.vue create mode 100644 vueJs/src/views/table/complex-table.vue create mode 100644 vueJs/src/views/table/draggable-table.vue create mode 100644 vueJs/src/views/table/dynamic-table/components/FixedHeaderTable.vue create mode 100644 vueJs/src/views/table/dynamic-table/components/UnfixedHeaderTable.vue create mode 100644 vueJs/src/views/table/dynamic-table/index.vue create mode 100644 vueJs/src/views/table/inline-edit-table.vue create mode 100644 vueJs/src/views/theme/index.vue create mode 100644 vueJs/src/views/zip/index.vue create mode 100644 vueJs/tests/unit/components/Breadcrumb.spec.ts create mode 100644 vueJs/tests/unit/utils/parseTime.spec.ts create mode 100644 vueJs/tests/unit/utils/validate.spec.ts create mode 100644 vueJs/tsconfig.json create mode 100644 vueJs/vue.config.github.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..051ce9c8b --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +.DS_Store +node_modules +/dist +vue.config.js +.env.production +task + +/tests/e2e/videos/ +/tests/e2e/screenshots/ +/tests/**/coverage/ + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +.vscode +.history +.ionide +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw* diff --git a/README.en.md b/README.en.md new file mode 100644 index 000000000..85dd66395 --- /dev/null +++ b/README.en.md @@ -0,0 +1,244 @@ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
](http://godban.github.io/browsers-support-badges/)IE / Edge | [
](http://godban.github.io/browsers-support-badges/)Firefox | [
](http://godban.github.io/browsers-support-badges/)Chrome | [
](http://godban.github.io/browsers-support-badges/)Safari |
+| --------- | --------- | --------- | --------- |
+| IE10, IE11, Edge| last 2 versions| last 2 versions| last 2 versions
+
+## Contributing
+
+See [CONTRIBUTING.md](https://github.com/Armour/vue-typescript-admin-template/blob/master/.github/CONTRIBUTING.md)
+
+## License
+
+[MIT License](https://github.com/Armour/vue-typescript-admin-template/blob/master/LICENSE)
diff --git a/README.md b/README.md
new file mode 100644
index 000000000..6a72ecb58
--- /dev/null
+++ b/README.md
@@ -0,0 +1,289 @@
+
+[English](./README.en.md) | 简体中文
+
+## 总览
+
+[vue-typescript-admin-template](http://armour.github.io/vue-typescript-admin-template) 是一个后台前端解决方案,它基于 [vue](https://github.com/vuejs/vue), [typescript](https://www.typescriptlang.org/) 和 [element-ui](https://github.com/ElemeFE/element)实现。原始的 Javascript 版本的代码是由 [PanJiaChen](https://github.com/PanJiaChen) 开发维护的 [vue-element-admin](https://github.com/PanJiaChen/vue-element-admin/), 十分感谢大佬对开源社区做出的贡献 :)
+
+如果你想从一个十分简单的基础模版开始,而不是直接使用这个功能丰富的集成方案的话,你可以看一看本项目的 [minimal](https://github.com/Armour/vue-typescript-admin-template/tree/minimal) 分支.
+
+通过这个前端框架,作者尝试集成后台abp框架,提供管理页面的支持
+
+## 线上文档
+
+[文档](https://armour.github.io/vue-typescript-admin-docs/zh)
+
+## 线上地址
+
+[示例](https://armour.github.io/vue-typescript-admin-template)
+
+## 截图
+
+
+
+
+
+
+
+## 相关项目
+
+后端项目
+
+[abpframework/abp](https://github.com/abpframework/abp) (abp vNext)
+
+Typescript 版本:
+
+[Armour/vue-typescript-admin-mock-server](https://github.com/armour/vue-typescript-admin-mock-server) (mock server for this project)
+
+[Armour/vue-typescript-admin-docs](https://github.com/armour/vue-typescript-admin-docs) (documentation source for this project)
+
+Javascript 版本:
+
+[PanJiaChen/vue-admin-template](https://github.com/PanJiaChen/vue-admin-template) (a vue2.0 minimal admin template)
+
+[PanJiaChen/vue-element-admin](https://github.com/PanJiaChen/vue-element-admin) (full features supported vue admin)
+
+[PanJiaChen/electron-vue-admin](https://github.com/PanJiaChen/electron-vue-admin) (a vue electron admin project)
+
+## 功能
+
+```txt
+- 登录 / 注销
+
+- 权限验证
+ - 页面权限
+ - 指令权限
+ - 权限配置
+ - 二步登录
+
+- 多环境发布
+ - Dev / Stage / Prod
+
+- 全局功能
+ - 国际化多语言
+ - 动态换肤
+ - 动态侧边栏(支持多级路由嵌套)
+ - 动态面包屑
+ - 快捷导航(支持右键操作)
+ - 粘贴板
+ - Svg 图标
+ - 搜索
+ - 全屏
+ - 设置
+ - Mock 数据 / Mock 服务器
+ - 支持 PWA
+
+- 组件
+ - 编辑器
+ - 富文本编辑器
+ - Markdown 编辑器
+ - JSON 编辑器
+ - 头像上传
+ - 返回顶部
+ - CountTo
+ - 拖放区
+ - 拖拽弹窗
+ - 拖拽看板
+ - 拖拽列表
+ - 拖拽选择
+ - ECharts 图表
+ - Mixin
+ - 拆分窗格
+ - 黏性组件
+
+- 表格
+ - 动态表格
+ - 拖拽表格
+ - 内联编辑表格
+ - 复杂表格
+
+- Excel
+ - 导出excel
+ - 导入excel
+ - 前端可视化excel
+
+- Zip
+ - 导出zip
+
+- PDF
+ - 下载 pdf
+
+- 控制台
+- 引导页
+- 综合实例
+- 错误日志
+- 错误页面
+ - 401
+ - 404
+```
+
+## 前序准备
+
+你需要在本地安装 [node](http://nodejs.org/) 和 [git](https://git-scm.com/)。本项目技术栈基于 [typescript](https://www.typescriptlang.org/)、[vue](https://cn.vuejs.org/index.html)、[vuex](https://vuex.vuejs.org/zh-cn/)、[vue-router](https://router.vuejs.org/zh-cn/) 、[vue-cli](https://github.com/vuejs/vue-cli) 、[axios](https://github.com/axios/axios) 和 [element-ui](https://github.com/ElemeFE/element),所有的请求数据都使用[faker.js](https://github.com/Marak/Faker.js)进行模拟,提前了解和学习这些知识会对使用本项目有很大的帮助。
+
+## 目录结构
+
+本项目已经为你生成了一个完整的开发框架,提供了涵盖后台开发的各类功能和坑位,下面是整个项目的目录结构。
+
+```bash
+├── mock # mock 服务器 与 模拟数据
+├── public # 静态资源 (会被直接复制)
+│ │── favicon.ico # favicon图标
+│ │── manifest.json # PWA 配置文件
+│ └── index.html # html模板
+├── src # 源代码
+│ ├── api # 所有请求
+│ ├── assets # 主题 字体等静态资源 (由 webpack 处理加载)
+│ ├── components # 全局组件
+│ ├── directive # 全局指令
+│ ├── filters # 全局过滤函数
+│ ├── icons # svg 图标
+│ ├── lang # 国际化
+│ ├── layout # 全局布局
+│ ├── pwa # PWA service worker 相关的文件
+│ ├── router # 路由
+│ ├── store # 全局 vuex store
+│ ├── styles # 全局样式
+│ ├── utils # 全局方法
+│ ├── views # 所有页面
+│ ├── App.vue # 入口页面
+│ ├── main.js # 入口文件 加载组件 初始化等
+│ ├── permission.ts # 权限管理
+│ ├── settings.ts # 设置文件
+│ └── shims.d.ts # 模块注入
+├── tests # 测试
+├── .circleci/ # 自动化 CI 配置
+├── .browserslistrc # browserslistrc 配置文件 (用于支持 Autoprefixer)
+├── .editorconfig # 编辑相关配置
+├── .env.xxx # 环境变量配置
+├── .eslintrc.js # eslint 配置
+├── babel.config.js # babel-loader 配置
+├── cypress.json # e2e 测试配置
+├── jest.config.js # jest 单元测试配置
+├── package.json # package.json 依赖
+├── postcss.config.js # postcss 配置
+├── tsconfig.json # typescript 配置
+└── vue.config.js # vue-cli 配置
+```
+
+## 如何设置以及启动项目
+
+### 安装依赖
+
+```bash
+yarn install
+```
+
+### 更改配置文件名称
+
+[.env.Github.production](./.env.Github.production) 变更为 .env.production
+
+[vue.config.github.js ](./vue.config.github.js ) 变更为 vue.config.js
+
+修改开发环境用于代理的服务器地址,以下提供了三个分别为IdentityService、IdentityServer、ApiService地址,如果有网关的话可以只需要一个网关地址即可
+
+```bash
+
+ proxy: {
+ [process.env.VUE_APP_BASE_IDENTITY_SERVER]: {
+ target: '你的identityService地址',
+ changeOrigin: true,
+ pathRewrite: {
+ ['^' + process.env.VUE_APP_BASE_IDENTITY_SERVER]: ''
+ }
+ },
+ [process.env.VUE_APP_BASE_IDENTITY_SERVICE]: {
+ target: '你的identityServer服务器地址',
+ changeOrigin: true,
+ pathRewrite: {
+ ['^' + process.env.VUE_APP_BASE_IDENTITY_SERVICE]: ''
+ }
+ },
+ [process.env.VUE_APP_BASE_API]: {
+ target: '你的api网关地址',
+ changeOrigin: true,
+ pathRewrite: {
+ ['^' + process.env.VUE_APP_BASE_API]: ''
+ }
+ }
+ }
+
+```
+
+修改生产环境真实地址,如上
+
+```bash
+
+# Base api
+# Remeber to change this to your production server address
+# Here I used my mock server for this project
+# VUE_APP_BASE_API = 'https://vue-typescript-admin-mock-server.armour.now.sh/mock-api/v1/'
+
+VUE_APP_BASE_API = '你的api网关服务器地址'
+
+VUE_APP_BASE_IDENTITY_SERVICE = '你的identityService服务器地址'
+
+VUE_APP_BASE_IDENTITY_SERVER = '你的identityServer服务器地址'
+
+# 客户端标识
+VUE_APP_CLIENT_ID = 'vue-admin-element'
+# 客户端密钥
+VUE_APP_CLIENT_SECRET = '1q2w3e*'
+
+```
+
+### 启动本地开发环境(自带热启动)
+
+```bash
+yarn serve
+```
+
+### 构建生产环境 (自带压缩)
+
+```bash
+yarn build:prod
+```
+
+### 代码格式检查以及自动修复
+
+```bash
+yarn lint
+```
+
+### 运行单元测试
+
+```bash
+yarn test:unit
+```
+
+### 运行端对端测试
+
+```bash
+yarn test:e2e
+```
+
+### 自动生成 svg 组件
+
+```bash
+yarn run svg
+```
+
+### 自定义 Vue 配置
+
+请看 [Configuration Reference](https://cli.vuejs.org/config/).
+
+## 浏览器支持
+
+Modern browsers and Internet Explorer 10+.
+
+| [
](http://godban.github.io/browsers-support-badges/)IE / Edge | [
](http://godban.github.io/browsers-support-badges/)Firefox | [
](http://godban.github.io/browsers-support-badges/)Chrome | [
](http://godban.github.io/browsers-support-badges/)Safari |
+| --------- | --------- | --------- | --------- |
+| IE10, IE11, Edge| last 2 versions| last 2 versions| last 2 versions
+
+## 参与贡献
+
+请看 [CONTRIBUTING.md](https://github.com/Armour/vue-typescript-admin-template/blob/master/.github/CONTRIBUTING.md)
+
+## License
+
+[MIT License](https://github.com/Armour/vue-typescript-admin-template/blob/master/LICENSE)
diff --git a/aspnet-core/.gitignore b/aspnet-core/.gitignore
new file mode 100644
index 000000000..360ea127f
--- /dev/null
+++ b/aspnet-core/.gitignore
@@ -0,0 +1 @@
+.vs
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj
new file mode 100644
index 000000000..6e2e554f6
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj
@@ -0,0 +1,26 @@
+