├── .gitattributes ├── .github ├── workflows │ └── dotnetcore.yml └── 工作流 │ └── codeql.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── README.md ├── README_Chinese.md ├── _config.yml ├── docker-compose.yml ├── docs ├── .gitattributes └── images │ ├── EasyNetQ.png │ ├── checkhealth.jpg │ ├── grafana.png │ ├── leonkou.png │ ├── logo2.png │ ├── netpro.png │ ├── netpro1.png │ ├── netpro2.png │ ├── netpro3.jpg │ ├── netproinfo.png │ ├── performance.png │ └── swagger.jpg ├── global.json ├── rundocker.ps1 ├── src ├── .dockerignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── Library │ ├── Consul.AspNetCore │ │ ├── AgentServiceRegistrationHostedService.cs │ │ ├── BindingAddress.cs │ │ ├── Consul.AspNetCore.csproj │ │ ├── ConsulClientFactory.cs │ │ ├── IConsulClientFactory.cs │ │ ├── README.md │ │ └── ServiceCollectionExtensions.cs │ ├── Localization.SqlLocalizer │ │ ├── DbStringLocalizer │ │ │ ├── DevelopmentSetup.cs │ │ │ ├── ExportHistory.cs │ │ │ ├── IStringExtendedLocalizerFactory.cs │ │ │ ├── ImportHistory.cs │ │ │ ├── LocalizationModelContext.cs │ │ │ ├── LocalizationRecord.cs │ │ │ ├── SqlContextOptions.cs │ │ │ ├── SqlStringLocalizer.cs │ │ │ ├── SqlStringLocalizerFactory.cs │ │ │ └── SqliteCreateLocalizationRecord.sql │ │ ├── Localization.SqlLocalizer.csproj │ │ ├── SharedResource.cs │ │ ├── SqlLocalizationOptions.cs │ │ └── SqlLocalizationServiceCollectionExtensions.cs │ ├── NetPro.Analysic │ │ ├── NetPro.Analysic.csproj │ │ ├── RequestAnalysisExtensionService.cs │ │ ├── RequestAnalysisMiddlewareExtensions.cs │ │ ├── RequestAnalysisOption.cs │ │ ├── Startup │ │ │ └── NetProAnalysicStartup400.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Apollo │ │ ├── ApolloClientHelper.cs │ │ ├── NetPro.Apollo.csproj │ │ └── readme.md │ ├── NetPro.Authentication │ │ ├── AuthenticationMiddleware.cs │ │ ├── AuthenticationOption.cs │ │ ├── AuthenticationServiceExtension.cs │ │ ├── NetPro.Authentication.csproj │ │ ├── Startup │ │ │ └── AuthenticationStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.AutoMapper │ │ ├── AutoMapperConfiguration.cs │ │ ├── AutoMapperExtensionService.cs │ │ ├── Extensions.Mapping.cs │ │ ├── IOrderMapperProfile.cs │ │ ├── NetPro.AutoMapper.csproj │ │ ├── Startup │ │ │ └── AutoMapperStartup.cs │ │ └── readme.md │ ├── NetPro.Checker │ │ ├── AppEnvironment.cs │ │ ├── AppInfo.cs │ │ ├── CheckMiddlewareHandler.cs │ │ ├── HealthCheck.cs │ │ ├── HealthCheckRegistry.cs │ │ ├── HealthChecksMongodbExtensions.cs │ │ ├── HealthChecksRedisExtensions.cs │ │ ├── HealthResponse.cs │ │ ├── NetPro.Checker.csproj │ │ ├── Startup │ │ │ └── CheckerStartup.cs │ │ ├── UrlHealthCheck.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.ConsulClient │ │ ├── ConsulExtesions.cs │ │ ├── ConsulOption.cs │ │ ├── NetPro.ConsulClient.csproj │ │ ├── RegisterToConsulExtension.cs │ │ ├── Startup │ │ │ ├── ConsulClientStartup.cs │ │ │ └── ConsulStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Cors │ │ ├── NetPro.Cors.csproj │ │ ├── NetProCorsOption.cs │ │ ├── Startup │ │ │ └── CorsStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.CsRedis │ │ ├── Common.cs │ │ ├── CsRedisManager.cs │ │ ├── IRedisManager.cs │ │ ├── ISerializer.cs │ │ ├── NetPro.CsRedis.csproj │ │ ├── NullCache.cs │ │ ├── RedisCacheOption.cs │ │ ├── RedisServiceExtensions.cs │ │ ├── Startup │ │ │ └── NetProCsRedisStartup.cs │ │ ├── app.json │ │ ├── readme.md │ │ └── serializers │ │ │ ├── StackExchange.Redis.Extensions.Newtonsoft │ │ │ └── NewtonsoftSerializer.cs │ │ │ └── StackExchange.Redis.Extensions.System.Text.Json │ │ │ ├── Converters │ │ │ ├── CultureCustomConverter.cs │ │ │ ├── StringToIntCustomConverter.cs │ │ │ ├── TimeSpanConverter.cs │ │ │ └── TimezoneCustomConverter.cs │ │ │ ├── SerializationOptions.cs │ │ │ └── SystemTextJsonSerializer.cs │ ├── NetPro.Dapper │ │ ├── DapperContext.cs │ │ ├── DapperServiceExtensions.cs │ │ ├── DataProvider.cs │ │ ├── DbConnectionFactory.cs │ │ ├── DbProviderFactories.cs │ │ ├── Expressions │ │ │ ├── DapperExpressionExtensions.cs │ │ │ ├── DapperExpressionVisitor.cs │ │ │ ├── DapperSmart.cs │ │ │ ├── DapperSmartAsync.cs │ │ │ ├── DataTableExtensions.cs │ │ │ ├── Evaluator.cs │ │ │ ├── ExpressionUtils.cs │ │ │ └── ParameterListExtension.cs │ │ ├── IUnitOfWork.cs │ │ ├── IUnitOfWorkFactory.cs │ │ ├── NetPro.Dapper.csproj │ │ ├── NetProUnitOfWorkFactory.cs │ │ ├── Parameters │ │ │ ├── IPagedList.cs │ │ │ ├── LogicType.cs │ │ │ ├── OperateType.cs │ │ │ ├── PageFilterDto.cs │ │ │ ├── PagedList.cs │ │ │ └── Parameter.cs │ │ ├── Repositories │ │ │ ├── DapperRepository.cs │ │ │ ├── DapperRepositoryAsync.cs │ │ │ ├── GeneralRepository.cs │ │ │ ├── IDapperRepository.cs │ │ │ └── IGeneralRepository.cs │ │ ├── UnitOfWork.cs │ │ └── readme.markdown │ ├── NetPro.Dependency │ │ ├── BatchInjectionExtension.cs │ │ ├── Dependency.cs │ │ ├── NetPro.Dependency.csproj │ │ ├── Startup │ │ │ └── NetProDependencyStartup.cs │ │ └── readme.md │ ├── NetPro.EFCore │ │ ├── BaseEntityTypeConfiguration.cs │ │ ├── NetPro.EFCore.csproj │ │ └── NetProDbContext.cs │ ├── NetPro.EasyNetQ │ │ ├── EasyNetQMulti.cs │ │ ├── EasyNetQOption.cs │ │ ├── EasyNetQServiceExtensions.cs │ │ ├── NetPro.EasyNetQ.csproj │ │ ├── Startup │ │ │ └── NetProEasyNetQStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.FreeRedis │ │ ├── NetPro.FreeRedis.csproj │ │ ├── RedisCacheOption.cs │ │ ├── RedisServiceExtensions.cs │ │ ├── Startup │ │ │ └── NetProFreeRedisStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Globalization │ │ ├── CustomLocalizationServiceCollectionExtensions.cs │ │ ├── CustomStringLocalizerFactory.cs │ │ ├── Globalization.cs │ │ ├── Globalization.json │ │ ├── Localization.SqlLocalizer │ │ │ ├── DbStringLocalizer │ │ │ │ ├── DevelopmentSetup.cs │ │ │ │ ├── ExportHistory.cs │ │ │ │ ├── IStringExtendedLocalizerFactory.cs │ │ │ │ ├── ImportHistory.cs │ │ │ │ ├── LocalizationModelContext.cs │ │ │ │ ├── LocalizationRecord.cs │ │ │ │ ├── SqlContextOptions.cs │ │ │ │ ├── SqlStringLocalizer.cs │ │ │ │ ├── SqlStringLocalizerFactory.cs │ │ │ │ └── SqliteCreateLocalizationRecord.sql │ │ │ ├── SharedResource.cs │ │ │ ├── SqlLocalizationOptions.cs │ │ │ └── SqlLocalizationServiceCollectionExtensions.cs │ │ ├── LocalizationRecords.sqlite │ │ ├── NetPro.Globalization.csproj │ │ ├── SqliteCreateLocalizationRecord.sql │ │ ├── Startup │ │ │ └── GlobalizationStartup.cs │ │ └── readme.md │ ├── NetPro.Grpc │ │ ├── GrpcServiceAttribute.cs │ │ ├── GrpcServiceExtension.cs │ │ ├── NetPro.Grpc.csproj │ │ ├── Startup │ │ │ └── GrpcServerStartup.cs │ │ └── readme.md │ ├── NetPro.Log │ │ ├── NetPro.Log.csproj │ │ ├── NetPro.Log │ │ │ ├── ILog.cs │ │ │ ├── NetProSerilog.cs │ │ │ └── NetProSerilogOptions.cs │ │ └── NetPro.Logging.AspNetCore │ │ │ └── NetProExcepitonFilter.cs │ ├── NetPro.MQTTClient │ │ ├── MQTTClientOption.cs │ │ ├── NetPro.MQTTClient.csproj │ │ ├── ServiceCollectionExtension.cs │ │ ├── Startup │ │ │ └── ApiProxyStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.MongoDb │ │ ├── MongoDBMulti.cs │ │ ├── MongoDbBuilderExtensions.cs │ │ ├── MongoDbOption.cs │ │ ├── NetPro.MongoDb.csproj │ │ ├── Startup │ │ │ └── NetProMongoDBMultiStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Prometheus │ │ ├── NetPro.Prometheus.csproj │ │ ├── Startup │ │ │ ├── HostingPrometheusStartup.cs │ │ │ └── PrometheusStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Proxy │ │ ├── ApiClientFilter.cs │ │ ├── HttpProxyServiceExtensions.cs │ │ ├── NetPro.Proxy.csproj │ │ ├── Startup │ │ │ └── ApiProxyStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Pulsar │ │ ├── AuthenticationBasic.cs │ │ ├── AuthenticationInfo.cs │ │ ├── IPulsarQueneService.cs │ │ ├── NetPro.Pulsar.csproj │ │ ├── PulsarConfigExtensions.cs │ │ ├── PulsarOption.cs │ │ ├── PulsarQueneService.cs │ │ ├── PulsarServiceExtensions.cs │ │ ├── Startup │ │ │ └── NetProPulsarStartup.cs │ │ ├── WebApiClient │ │ │ ├── ApiAttribute │ │ │ │ └── BasicAuthorizationAttribute.cs │ │ │ └── IPulsarAdminApi.cs │ │ └── readme.md │ ├── NetPro.RabbitMQ │ │ ├── AuthUtil │ │ │ ├── AliyunMechanism.cs │ │ │ ├── AliyunMechanismFactory.cs │ │ │ └── AliyunUtils.cs │ │ ├── Configuration │ │ │ ├── RabbitMqClientOptions.cs │ │ │ ├── RabbitMqExchangeOptions.cs │ │ │ └── RabbitMqQueueOptions.cs │ │ ├── ExchangeServiceDescriptor.cs │ │ ├── IAsyncMessageHandler.cs │ │ ├── IAsyncNonCyclicMessageHandler.cs │ │ ├── IMessageHandler.cs │ │ ├── INonCyclicMessageHandler.cs │ │ ├── IQueueService.cs │ │ ├── MessageHandlerRouter.cs │ │ ├── NetPro.RabbitMQ.csproj │ │ ├── QueueService.cs │ │ ├── RabbitMqClientDependencyInjectionExtensions.cs │ │ ├── RabbitMqExchange.cs │ │ └── readme.md │ ├── NetPro.RedisManager │ │ ├── Common.cs │ │ ├── CsRedisManager.cs │ │ ├── IRedisManager.cs │ │ ├── ISerializer.cs │ │ ├── NetPro.RedisManager.csproj │ │ ├── NewtonsoftSerializer.cs │ │ ├── NullCache.cs │ │ ├── RedisCacheComponentEnum.cs │ │ ├── RedisCacheOption.cs │ │ ├── RedisServiceExtensions.cs │ │ ├── StackExchangeRedisManager.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.ResponseCache │ │ ├── Common.cs │ │ ├── NetPro.ResponseCache.csproj │ │ ├── PostResponseCacheAttribute.cs │ │ ├── PostResponseCacheMiddleware.cs │ │ ├── ResponseCacheOption.cs │ │ ├── ResponseCachingExtensionService.cs │ │ ├── Startup │ │ │ └── ResponseCacheStartup.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.ResponseResult │ │ ├── IResponseResult.cs │ │ └── NetPro.ResponseResult.csproj │ ├── NetPro.Serilog │ │ ├── NetPro.Serilog.csproj │ │ ├── Startup │ │ │ └── NetProSerilogStartup.cs │ │ └── readme.md │ ├── NetPro.ShareRequestData │ │ ├── Common.cs │ │ ├── NetPro.ShareRequestBody.csproj │ │ ├── ResponseCacheData.cs │ │ ├── ShareRequestBodyMiddleware.cs │ │ ├── ShareRequestBodyServiceExtensions.cs │ │ ├── ShareResponseBodyFilter.cs │ │ ├── Startup │ │ │ └── ShareBodyStartup.cs │ │ └── readme.md │ ├── NetPro.Sign │ │ ├── IgnoreSignAttribute.cs │ │ ├── NetPro.Sign.csproj │ │ ├── SignCommon.cs │ │ ├── SignMiddleware.cs │ │ ├── Startup │ │ │ └── SignStartup.cs │ │ ├── VerifySignAttribute.cs │ │ ├── VerifySignDefaultFilter.cs │ │ ├── VerifySignOption.cs │ │ ├── VerifySignServiceExtensions.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.StackExchange.Redis │ │ ├── NetPro.StackExchange.Redis.csproj │ │ ├── StackExchange.Redis.Extensions.AspNetCore │ │ │ ├── Extensions │ │ │ │ ├── IApplicationBuilderExtensions.cs │ │ │ │ └── IServiceCollectionExtensions.cs │ │ │ └── Midllewares │ │ │ │ ├── RedisInformationMiddleware.cs │ │ │ │ └── RedisMiddlewareAccessOptions.cs │ │ ├── StackExchange.Redis.Extensions.Core │ │ │ ├── Abstractions │ │ │ │ ├── IRedisCacheClient.cs │ │ │ │ ├── IRedisCacheConnectionPoolManager.cs │ │ │ │ ├── IRedisDatabase.Hash.cs │ │ │ │ ├── IRedisDatabase.Lists.cs │ │ │ │ ├── IRedisDatabase.PubSub.cs │ │ │ │ ├── IRedisDatabase.Sort.cs │ │ │ │ └── IRedisDatabase.cs │ │ │ ├── Configuration │ │ │ │ ├── RedisConfiguration.cs │ │ │ │ ├── RedisHost.cs │ │ │ │ └── ServerEnumerationStrategy.cs │ │ │ ├── Extensions │ │ │ │ └── ValueLengthExtensions.cs │ │ │ ├── ISerializer.cs │ │ │ ├── Implementations │ │ │ │ ├── NullCache.cs │ │ │ │ ├── RedisCacheClient.cs │ │ │ │ ├── RedisCacheConnectionPoolManager.cs │ │ │ │ ├── RedisDatabase.Hash.cs │ │ │ │ ├── RedisDatabase.List.cs │ │ │ │ ├── RedisDatabase.PubSub.cs │ │ │ │ ├── RedisDatabase.Sort.cs │ │ │ │ └── RedisDatabase.cs │ │ │ ├── Models │ │ │ │ ├── ConnectionPoolInformation.cs │ │ │ │ └── InfoDetail.cs │ │ │ └── ServerIteration │ │ │ │ ├── ServerEnumerable.cs │ │ │ │ └── ServerIteratorFactory.cs │ │ ├── app.json │ │ ├── docs │ │ │ └── markdown.md │ │ ├── readme.md │ │ └── serializers │ │ │ ├── StackExchange.Redis.Extensions.Newtonsoft │ │ │ └── NewtonsoftSerializer.cs │ │ │ └── StackExchange.Redis.Extensions.System.Text.Json │ │ │ ├── Converters │ │ │ ├── CultureCustomConverter.cs │ │ │ ├── StringToIntCustomConverter.cs │ │ │ ├── TimeSpanConverter.cs │ │ │ └── TimezoneCustomConverter.cs │ │ │ ├── SerializationOptions.cs │ │ │ └── SystemTextJsonSerializer.cs │ ├── NetPro.Startup │ │ ├── EngineContext.cs │ │ ├── IEngine.cs │ │ ├── INetProStartup.cs │ │ ├── IStartupTask.cs │ │ ├── NetPro.Startup.csproj │ │ ├── NetProEngine.cs │ │ ├── NetProStartup.cs │ │ ├── ReplaceStartupAttribute.cs │ │ ├── Singleton.cs │ │ ├── readme.md │ │ └── startup.json │ ├── NetPro.Swagger │ │ ├── CustomerHeaderParameter.cs │ │ ├── CustomerQueryParameter.cs │ │ ├── Index.html │ │ ├── IndexDark.html │ │ ├── NetPro.Swagger.csproj │ │ ├── NetProSwaggerServiceExtensions.cs │ │ ├── Startup │ │ │ └── SwaggerStartup.cs │ │ ├── SwaggerDefaultValueAttribute.cs │ │ ├── SwaggerDefaultValueFilter.cs │ │ ├── SwaggerFileUploadFilter.cs │ │ ├── SwaggerOption.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Taos │ │ ├── NetPro.Taos.csproj │ │ ├── Startup │ │ │ └── NetProTaosMultiStartup.cs │ │ ├── TaosOption.cs │ │ ├── TaosServiceExtensions.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Tdengine │ │ ├── NetPro.Tdengine.csproj │ │ ├── Startup │ │ │ └── NetProTdengineStartup.cs │ │ ├── TdengineMulti.cs │ │ ├── TdengineOption.cs │ │ ├── TdengineServiceExtensions.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.TypeFinder │ │ ├── AppDomainTypeFinder.cs │ │ ├── CommonHelper.cs │ │ ├── FileServiceExtensions.cs │ │ ├── INetProFileProvider.cs │ │ ├── ITypeFinder.cs │ │ ├── NetPro.TypeFinder.csproj │ │ ├── NetProFileProvider.cs │ │ ├── TypeFinderOption.cs │ │ ├── WebAppTypeFinder.cs │ │ ├── app.json │ │ └── readme.md │ ├── NetPro.Utility │ │ ├── Extenisons │ │ │ ├── Extensions.Collection.cs │ │ │ ├── Extensions.Common.cs │ │ │ ├── Extensions.Convert.cs │ │ │ ├── Extensions.Enum.cs │ │ │ ├── Extensions.Linq.cs │ │ │ ├── Extensions.Reflection.cs │ │ │ └── Extensions.String.cs │ │ ├── Helpers │ │ │ ├── CommonHelper.cs │ │ │ ├── Const.cs │ │ │ ├── ConvertHelper.cs │ │ │ ├── EncryptHelper.cs │ │ │ ├── EnumHelper.cs │ │ │ ├── ExcelHelper.cs │ │ │ ├── IdHelper.cs │ │ │ ├── Internal │ │ │ │ ├── ObjectId.cs │ │ │ │ └── RSAHelper.cs │ │ │ ├── LinqHelper.cs │ │ │ ├── Property.cs │ │ │ ├── ReflectionHelper.cs │ │ │ ├── RegexHelper.cs │ │ │ ├── SignHelper.cs │ │ │ ├── TimeHelper.cs │ │ │ ├── Validation.cs │ │ │ └── XmlHelper.cs │ │ └── NetPro.Utility.csproj │ ├── NetPro.Web.Api │ │ ├── Compression │ │ │ └── ResponseCompressionVaryWorkaroundMiddleware.cs │ │ ├── Configuration │ │ │ ├── HostingConfig.cs │ │ │ └── NetProOption.cs │ │ ├── Consts │ │ │ └── EnumAppPlatform.cs │ │ ├── Controllers │ │ │ ├── AnonymousApiController.cs │ │ │ ├── ApiControllerBase.cs │ │ │ └── AuthorizeApiController.cs │ │ ├── Extensions │ │ │ ├── ApplicationBuilderExtensions.cs │ │ │ ├── Extensions.Common.cs │ │ │ └── Extensions.Identity.cs │ │ ├── Filters │ │ │ └── BenchmarkActionFilter.cs │ │ ├── Helper │ │ │ ├── ActionFilterHelper.cs │ │ │ ├── CommonHelper.cs │ │ │ ├── ConvertHelper.cs │ │ │ ├── EnumHelper.cs │ │ │ ├── IWebHelper.cs │ │ │ ├── RegexHelper.cs │ │ │ ├── WebHelper.cs │ │ │ └── XMLProcess.cs │ │ ├── Models │ │ │ ├── PagedList.cs │ │ │ ├── ResponseResult.cs │ │ │ └── SearchPageBase.cs │ │ ├── NetPro.Web.Api.csproj │ │ ├── Providers │ │ │ └── CustomMetadataProvider.cs │ │ ├── Startup │ │ │ ├── ErrorHandlerStartup.cs │ │ │ ├── NetProCoreStartup.cs │ │ │ ├── RoutingStartup.cs │ │ │ └── StaticFilesStartup.cs │ │ ├── Validators │ │ │ └── BaseValidator.cs │ │ └── readme.md │ ├── NetPro.ZeroMQ │ │ ├── NetPro.ZeroMQ.csproj │ │ ├── Startup │ │ │ └── ZeroMQStartup.cs │ │ ├── ZeroMQOption.cs │ │ ├── ZeroMQServiceExtensions.cs │ │ ├── app.json │ │ └── readme.md │ └── TODO.md ├── NetProMicroservice.sln ├── NuGet.config ├── PushNuget.ps1 ├── PushNuget │ ├── PushNuget.ps1 │ └── nuget.txt ├── Template │ ├── API │ │ ├── Content │ │ │ ├── .gitignore │ │ │ ├── .template.config │ │ │ │ └── template.json │ │ │ ├── README.md │ │ │ ├── cicd │ │ │ │ └── XXX │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── istio.yaml │ │ │ │ │ └── k8s.yaml │ │ │ ├── docs │ │ │ │ └── remark.md │ │ │ ├── global.json │ │ │ └── src │ │ │ │ ├── NuGet.config │ │ │ │ ├── README.md │ │ │ │ ├── XXX.sln │ │ │ │ └── XXX │ │ │ │ ├── Dockerfile │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Globalization.db │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ │ ├── Protos │ │ │ │ ├── README.md │ │ │ │ └── greet.proto │ │ │ │ ├── README.md │ │ │ │ ├── StartTask │ │ │ │ ├── README.md │ │ │ │ └── TimerjobStartTask .cs │ │ │ │ ├── Startup │ │ │ │ ├── ApiStartup.cs │ │ │ │ └── EndpointsStartup.cs │ │ │ │ ├── XXX.Plugin.FreeSql │ │ │ │ ├── Controller │ │ │ │ │ └── FreeSQLDemoController.cs │ │ │ │ ├── Entity │ │ │ │ │ ├── Company.cs │ │ │ │ │ ├── User.cs │ │ │ │ │ ├── UserRelation.cs │ │ │ │ │ └── XXX.Entity.csproj │ │ │ │ ├── FreeSqlStartup.cs │ │ │ │ ├── GlobalUsings.cs │ │ │ │ ├── Mapper │ │ │ │ │ └── XXXMapper.cs │ │ │ │ ├── Model │ │ │ │ │ └── UserSearchAo.cs │ │ │ │ ├── README.md │ │ │ │ └── Service │ │ │ │ │ └── FreeSQLDemoService .cs │ │ │ │ ├── XXX.csproj │ │ │ │ ├── appsettings.json │ │ │ │ └── config.json │ │ │ │ ├── checker.Development.json │ │ │ │ ├── checker.json │ │ │ │ ├── connection.json │ │ │ │ ├── consul.json │ │ │ │ ├── globalization.json │ │ │ │ ├── prometheus.json │ │ │ │ ├── redis.json │ │ │ │ ├── serilog.json │ │ │ │ └── swagger.json │ │ ├── NetProApi.nuspec │ │ ├── README.md │ │ └── logo2.png │ └── gRPC │ │ ├── Content │ │ ├── .gitignore │ │ ├── .template.config │ │ │ └── template.json │ │ ├── README.md │ │ ├── cicd │ │ │ └── XXX │ │ │ │ ├── Dockerfile │ │ │ │ ├── istio.yaml │ │ │ │ └── k8s.yaml │ │ ├── docs │ │ │ └── remark.md │ │ ├── global.json │ │ └── src │ │ │ ├── NuGet.config │ │ │ ├── XXX.GrpcServer │ │ │ ├── DemoOne │ │ │ │ ├── Protos │ │ │ │ │ └── greetone.proto │ │ │ │ └── Services │ │ │ │ │ └── GreeterOneService.cs │ │ │ ├── DemoTwo │ │ │ │ ├── Protos │ │ │ │ │ └── greettwo.proto │ │ │ │ └── Services │ │ │ │ │ └── GreeterTwoService.cs │ │ │ ├── Dockerfile │ │ │ ├── GlobalUsings.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Startup │ │ │ │ └── startup.json │ │ │ ├── XXX.GrpcServer.csproj │ │ │ ├── appsettings.json │ │ │ └── config.json │ │ │ │ ├── consul.json │ │ │ │ └── serilog.json │ │ │ └── XXX.sln │ │ ├── NetProGrpc.nuspec │ │ ├── README.md │ │ └── logo2.png ├── Test │ ├── Native │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── Native.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── TestConsole │ │ ├── OptionTest.cs │ │ ├── Program.cs │ │ ├── RedisCacheOption.cs │ │ ├── TestConsole.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── UnitTest.StackExchangeRedis │ │ ├── CsRedis.cs │ │ ├── StackExchangeRedis.cs │ │ └── UnitTest.StackExchangeRedis.csproj │ ├── XXX30.API │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── Plugin │ │ │ └── readme.text │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup │ │ │ ├── ApiStartup.cs │ │ │ └── EndpointsStartup.cs │ │ ├── StartupConfig │ │ │ └── startup.json │ │ ├── WeatherForecast.cs │ │ ├── XXX30.API.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── XXX60.API │ │ ├── EndpointsStartup.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── StartupConfig │ │ └── startup.json │ │ ├── XXX60.API.csproj │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── serilog.json └── sample │ ├── NuGet.config │ ├── README.md │ ├── XXX.API │ ├── Dockerfile │ ├── GlobalUsings.cs │ ├── GlobalizationDemo │ │ ├── Controllers │ │ │ └── GlobalizationDemoController .cs │ │ └── Service │ │ │ └── GlobalizationService.cs │ ├── MiddlewareDemo │ │ ├── Controllers │ │ │ └── MiddlewareDemoController .cs │ │ ├── Model │ │ │ └── README.md │ │ ├── Proxy │ │ │ └── IBaiduProxy.cs │ │ ├── RemotingStartup.cs │ │ └── Service │ │ │ └── README.md │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Protos │ │ └── greet.proto │ ├── README.md │ ├── StartTask │ │ ├── README.md │ │ └── TimerjobStartTask .cs │ ├── Startup │ │ ├── ApiStartup.cs │ │ ├── CustomErrorHandlerStartup.cs │ │ ├── EndpointsStartup.cs │ │ └── startup.json │ ├── TimeZoneDemo │ │ └── Controllers │ │ │ └── TimeZoneDemoController.cs │ ├── XXX.API.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── config.json │ │ ├── checker.Development.json │ │ ├── checker.json │ │ ├── connection.json │ │ ├── consul.json │ │ ├── cors.json │ │ ├── easynetq.json │ │ ├── globalization.json │ │ ├── mongo.json │ │ ├── mqtt.json │ │ ├── prometheus.json │ │ ├── proxy.json │ │ ├── pulsar.json │ │ ├── redis.json │ │ ├── responsecache.json │ │ ├── serilog.json │ │ ├── swagger.json │ │ ├── tdengine.json │ │ └── zeromq.json │ ├── runtimeconfig.template.json │ └── tool │ │ ├── README.md │ │ ├── dotnet-counters │ │ ├── dotnet-dump │ │ ├── dotnet-gcdump │ │ ├── dotnet-stack │ │ └── dotnet-trace │ ├── XXX.Plugin.EasyNetQ │ ├── Controller │ │ └── EasyNetQController.cs │ ├── GlobalUsings.cs │ ├── README.md │ ├── Service │ │ └── EasyNetQService.cs │ ├── StartTask │ │ └── RabbitMqStartTask.cs │ ├── XXX.Plugin.EasyNetQ.csproj │ └── XXXEasyNetQ.cs │ ├── XXX.Plugin.FreeRedis │ ├── Controller │ │ └── FreeRedisDemoController.cs │ ├── GlobalUsings.cs │ ├── README.md │ ├── RedisStartup.cs │ ├── Service │ │ └── RedisService.cs │ └── XXX.Plugin.FreeRedis.csproj │ ├── XXX.Plugin.FreeSql │ ├── Controller │ │ ├── FreeSQLAsTableController.cs │ │ └── FreeSQLDemoController.cs │ ├── Entity │ │ ├── Company.cs │ │ ├── Log.cs │ │ ├── User.cs │ │ ├── UserProfile.cs │ │ ├── UserRelation.cs │ │ └── XXX.Entity.csproj │ ├── Extensions │ │ └── Extenisons.cs │ ├── FreeSqlStartup.cs │ ├── GlobalUsings.cs │ ├── Mapper │ │ └── XXXMapper.cs │ ├── Model │ │ ├── LogSearchAo.cs │ │ └── UserSearchAo.cs │ ├── README.md │ ├── Service │ │ ├── FreeSQLAsTableService.cs │ │ └── FreeSQLDemoService .cs │ ├── StartTask │ │ ├── AutoCreateTableStartTask.cs │ │ └── README.md │ └── XXX.Plugin.FreeSql.csproj │ ├── XXX.Plugin.MQTTServer │ ├── MQTTServerStartup.cs │ ├── README.md │ ├── StartTask │ │ ├── MQTTClientTask.cs │ │ └── MQTTServerTask.cs │ └── XXX.Plugin.MQTTServer.csproj │ ├── XXX.Plugin.MediatR │ ├── Controller │ │ └── MediatRDemoController.cs │ ├── Event │ │ ├── ConsumHandler.cs │ │ └── ResponeEvent.cs │ ├── GlobalUsings.cs │ ├── MediatRStartup.cs │ ├── Model │ │ └── SendRequestModel.cs │ ├── README.md │ └── XXX.Plugin.MediatR.csproj │ ├── XXX.Plugin.MongoDB │ ├── Controller │ │ └── MongoDBDemoController.cs │ ├── Entity │ │ └── Product.cs │ ├── GlobalUsings.cs │ ├── MongoDBDemoStartup .cs │ ├── README.md │ ├── Service │ │ └── MongoDBDemoService .cs │ └── XXX.Plugin.MongoDB.csproj │ ├── XXX.Plugin.Pulsar │ ├── Controller │ │ └── PulsarTestController.cs │ ├── PulsarStartup.cs │ ├── Task │ │ └── PulsarTask.cs │ └── XXX.Plugin.Pulsar.csproj │ ├── XXX.Plugin.Redis │ ├── Controller │ │ ├── RedisDemoController.cs │ │ └── ScriptController.cs │ ├── GlobalUsings.cs │ ├── README.md │ ├── RedisStartup.cs │ ├── Service │ │ └── RedisService.cs │ └── XXX.Plugin.Redis.csproj │ ├── XXX.Plugin.Tdengine │ ├── Controller │ │ └── TaosController.cs │ ├── GlobalUsings.cs │ ├── Model │ │ └── TaosAo.cs │ ├── Proxy │ │ └── ITaosProxy.cs │ ├── README.md │ ├── Service │ │ └── TaosService.cs │ ├── TdengineStartup.cs │ └── XXX.Plugin.Tdengine.csproj │ └── XXX.Plugin.ZeroMQ │ ├── Controller │ └── ZeroMQController.cs │ ├── GlobalUsings.cs │ ├── README.md │ ├── StartTask │ └── NetMqTask.cs │ └── XXX.Plugin.ZeroMQ.csproj └── tye.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/.github/workflows/dotnetcore.yml -------------------------------------------------------------------------------- /.github/工作流/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/.github/工作流/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/README.md -------------------------------------------------------------------------------- /README_Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/README_Chinese.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/_config.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/.gitattributes -------------------------------------------------------------------------------- /docs/images/EasyNetQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/EasyNetQ.png -------------------------------------------------------------------------------- /docs/images/checkhealth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/checkhealth.jpg -------------------------------------------------------------------------------- /docs/images/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/grafana.png -------------------------------------------------------------------------------- /docs/images/leonkou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/leonkou.png -------------------------------------------------------------------------------- /docs/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/logo2.png -------------------------------------------------------------------------------- /docs/images/netpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/netpro.png -------------------------------------------------------------------------------- /docs/images/netpro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/netpro1.png -------------------------------------------------------------------------------- /docs/images/netpro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/netpro2.png -------------------------------------------------------------------------------- /docs/images/netpro3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/netpro3.jpg -------------------------------------------------------------------------------- /docs/images/netproinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/netproinfo.png -------------------------------------------------------------------------------- /docs/images/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/performance.png -------------------------------------------------------------------------------- /docs/images/swagger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/docs/images/swagger.jpg -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/global.json -------------------------------------------------------------------------------- /rundocker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/rundocker.ps1 -------------------------------------------------------------------------------- /src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/.dockerignore -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/.vscode/tasks.json -------------------------------------------------------------------------------- /src/Library/Consul.AspNetCore/AgentServiceRegistrationHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Consul.AspNetCore/AgentServiceRegistrationHostedService.cs -------------------------------------------------------------------------------- /src/Library/Consul.AspNetCore/BindingAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Consul.AspNetCore/BindingAddress.cs -------------------------------------------------------------------------------- /src/Library/Consul.AspNetCore/Consul.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Consul.AspNetCore/Consul.AspNetCore.csproj -------------------------------------------------------------------------------- /src/Library/Consul.AspNetCore/ConsulClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Consul.AspNetCore/ConsulClientFactory.cs -------------------------------------------------------------------------------- /src/Library/Consul.AspNetCore/IConsulClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Consul.AspNetCore/IConsulClientFactory.cs -------------------------------------------------------------------------------- /src/Library/Consul.AspNetCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Consul.AspNetCore/README.md -------------------------------------------------------------------------------- /src/Library/Consul.AspNetCore/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Consul.AspNetCore/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/DevelopmentSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/DevelopmentSetup.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/ExportHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/ExportHistory.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/IStringExtendedLocalizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/IStringExtendedLocalizerFactory.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/ImportHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/ImportHistory.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/LocalizationModelContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/LocalizationModelContext.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/LocalizationRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/LocalizationRecord.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/SqlContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/SqlContextOptions.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizer.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizerFactory.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/DbStringLocalizer/SqliteCreateLocalizationRecord.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/DbStringLocalizer/SqliteCreateLocalizationRecord.sql -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/Localization.SqlLocalizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/Localization.SqlLocalizer.csproj -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/SharedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/SharedResource.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/SqlLocalizationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/SqlLocalizationOptions.cs -------------------------------------------------------------------------------- /src/Library/Localization.SqlLocalizer/SqlLocalizationServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/Localization.SqlLocalizer/SqlLocalizationServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Analysic/NetPro.Analysic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Analysic/NetPro.Analysic.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Analysic/RequestAnalysisExtensionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Analysic/RequestAnalysisExtensionService.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Analysic/RequestAnalysisMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Analysic/RequestAnalysisMiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Analysic/RequestAnalysisOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Analysic/RequestAnalysisOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Analysic/Startup/NetProAnalysicStartup400.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Analysic/Startup/NetProAnalysicStartup400.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Analysic/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Analysic/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Analysic/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Analysic/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Apollo/ApolloClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Apollo/ApolloClientHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Apollo/NetPro.Apollo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Apollo/NetPro.Apollo.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Apollo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Apollo/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Authentication/AuthenticationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Authentication/AuthenticationMiddleware.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Authentication/AuthenticationOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Authentication/AuthenticationOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Authentication/AuthenticationServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Authentication/AuthenticationServiceExtension.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Authentication/NetPro.Authentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Authentication/NetPro.Authentication.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Authentication/Startup/AuthenticationStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Authentication/Startup/AuthenticationStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Authentication/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Authentication/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Authentication/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Authentication/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.AutoMapper/AutoMapperConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.AutoMapper/AutoMapperConfiguration.cs -------------------------------------------------------------------------------- /src/Library/NetPro.AutoMapper/AutoMapperExtensionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.AutoMapper/AutoMapperExtensionService.cs -------------------------------------------------------------------------------- /src/Library/NetPro.AutoMapper/Extensions.Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.AutoMapper/Extensions.Mapping.cs -------------------------------------------------------------------------------- /src/Library/NetPro.AutoMapper/IOrderMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.AutoMapper/IOrderMapperProfile.cs -------------------------------------------------------------------------------- /src/Library/NetPro.AutoMapper/NetPro.AutoMapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.AutoMapper/NetPro.AutoMapper.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.AutoMapper/Startup/AutoMapperStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.AutoMapper/Startup/AutoMapperStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.AutoMapper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.AutoMapper/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/AppEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/AppEnvironment.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/AppInfo.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/CheckMiddlewareHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/CheckMiddlewareHandler.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/HealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/HealthCheck.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/HealthCheckRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/HealthCheckRegistry.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/HealthChecksMongodbExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/HealthChecksMongodbExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/HealthChecksRedisExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/HealthChecksRedisExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/HealthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/HealthResponse.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/NetPro.Checker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/NetPro.Checker.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/Startup/CheckerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/Startup/CheckerStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/UrlHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/UrlHealthCheck.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Checker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Checker/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.ConsulClient/ConsulExtesions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ConsulClient/ConsulExtesions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ConsulClient/ConsulOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ConsulClient/ConsulOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ConsulClient/NetPro.ConsulClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ConsulClient/NetPro.ConsulClient.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.ConsulClient/RegisterToConsulExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ConsulClient/RegisterToConsulExtension.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ConsulClient/Startup/ConsulClientStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ConsulClient/Startup/ConsulClientStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ConsulClient/Startup/ConsulStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ConsulClient/Startup/ConsulStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ConsulClient/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ConsulClient/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.ConsulClient/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ConsulClient/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Cors/NetPro.Cors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Cors/NetPro.Cors.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Cors/NetProCorsOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Cors/NetProCorsOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Cors/Startup/CorsStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Cors/Startup/CorsStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Cors/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Cors/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Cors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Cors/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/Common.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/CsRedisManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/CsRedisManager.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/IRedisManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/IRedisManager.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/ISerializer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/NetPro.CsRedis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/NetPro.CsRedis.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/NullCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/NullCache.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/RedisCacheOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/RedisCacheOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/RedisServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/RedisServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/Startup/NetProCsRedisStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/Startup/NetProCsRedisStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.Newtonsoft/NewtonsoftSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.Newtonsoft/NewtonsoftSerializer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/CultureCustomConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/CultureCustomConverter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/StringToIntCustomConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/StringToIntCustomConverter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/TimeSpanConverter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/TimezoneCustomConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/TimezoneCustomConverter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/SerializationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/SerializationOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/SystemTextJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.CsRedis/serializers/StackExchange.Redis.Extensions.System.Text.Json/SystemTextJsonSerializer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/DapperContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/DapperContext.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/DapperServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/DapperServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/DataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/DataProvider.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/DbConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/DbConnectionFactory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/DbProviderFactories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/DbProviderFactories.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Expressions/DapperExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Expressions/DapperExpressionExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Expressions/DapperExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Expressions/DapperExpressionVisitor.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Expressions/DapperSmart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Expressions/DapperSmart.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Expressions/DapperSmartAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Expressions/DapperSmartAsync.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Expressions/DataTableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Expressions/DataTableExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Expressions/Evaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Expressions/Evaluator.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Expressions/ExpressionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Expressions/ExpressionUtils.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Expressions/ParameterListExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Expressions/ParameterListExtension.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/IUnitOfWorkFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/IUnitOfWorkFactory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/NetPro.Dapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/NetPro.Dapper.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/NetProUnitOfWorkFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/NetProUnitOfWorkFactory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Parameters/IPagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Parameters/IPagedList.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Parameters/LogicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Parameters/LogicType.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Parameters/OperateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Parameters/OperateType.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Parameters/PageFilterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Parameters/PageFilterDto.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Parameters/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Parameters/PagedList.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Parameters/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Parameters/Parameter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Repositories/DapperRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Repositories/DapperRepository.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Repositories/DapperRepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Repositories/DapperRepositoryAsync.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Repositories/GeneralRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Repositories/GeneralRepository.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Repositories/IDapperRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Repositories/IDapperRepository.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/Repositories/IGeneralRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/Repositories/IGeneralRepository.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/UnitOfWork.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dapper/readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dapper/readme.markdown -------------------------------------------------------------------------------- /src/Library/NetPro.Dependency/BatchInjectionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dependency/BatchInjectionExtension.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dependency/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dependency/Dependency.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dependency/NetPro.Dependency.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dependency/NetPro.Dependency.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Dependency/Startup/NetProDependencyStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dependency/Startup/NetProDependencyStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Dependency/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Dependency/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.EFCore/BaseEntityTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EFCore/BaseEntityTypeConfiguration.cs -------------------------------------------------------------------------------- /src/Library/NetPro.EFCore/NetPro.EFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EFCore/NetPro.EFCore.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.EFCore/NetProDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EFCore/NetProDbContext.cs -------------------------------------------------------------------------------- /src/Library/NetPro.EasyNetQ/EasyNetQMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EasyNetQ/EasyNetQMulti.cs -------------------------------------------------------------------------------- /src/Library/NetPro.EasyNetQ/EasyNetQOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EasyNetQ/EasyNetQOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.EasyNetQ/EasyNetQServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EasyNetQ/EasyNetQServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.EasyNetQ/NetPro.EasyNetQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EasyNetQ/NetPro.EasyNetQ.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.EasyNetQ/Startup/NetProEasyNetQStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EasyNetQ/Startup/NetProEasyNetQStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.EasyNetQ/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EasyNetQ/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.EasyNetQ/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.EasyNetQ/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.FreeRedis/NetPro.FreeRedis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.FreeRedis/NetPro.FreeRedis.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.FreeRedis/RedisCacheOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.FreeRedis/RedisCacheOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.FreeRedis/RedisServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.FreeRedis/RedisServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.FreeRedis/Startup/NetProFreeRedisStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.FreeRedis/Startup/NetProFreeRedisStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.FreeRedis/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.FreeRedis/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.FreeRedis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.FreeRedis/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/CustomLocalizationServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/CustomLocalizationServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/CustomStringLocalizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/CustomStringLocalizerFactory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Globalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Globalization.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Globalization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Globalization.json -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/DevelopmentSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/DevelopmentSetup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/ExportHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/ExportHistory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/IStringExtendedLocalizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/IStringExtendedLocalizerFactory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/ImportHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/ImportHistory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/LocalizationModelContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/LocalizationModelContext.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/LocalizationRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/LocalizationRecord.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/SqlContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/SqlContextOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/SqlStringLocalizerFactory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/SqliteCreateLocalizationRecord.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/DbStringLocalizer/SqliteCreateLocalizationRecord.sql -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/SharedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/SharedResource.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/SqlLocalizationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/SqlLocalizationOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Localization.SqlLocalizer/SqlLocalizationServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Localization.SqlLocalizer/SqlLocalizationServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/LocalizationRecords.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/LocalizationRecords.sqlite -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/NetPro.Globalization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/NetPro.Globalization.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/SqliteCreateLocalizationRecord.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/SqliteCreateLocalizationRecord.sql -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/Startup/GlobalizationStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/Startup/GlobalizationStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Globalization/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Globalization/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Grpc/GrpcServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Grpc/GrpcServiceAttribute.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Grpc/GrpcServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Grpc/GrpcServiceExtension.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Grpc/NetPro.Grpc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Grpc/NetPro.Grpc.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Grpc/Startup/GrpcServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Grpc/Startup/GrpcServerStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Grpc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Grpc/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Log/NetPro.Log.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Log/NetPro.Log.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Log/NetPro.Log/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Log/NetPro.Log/ILog.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Log/NetPro.Log/NetProSerilog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Log/NetPro.Log/NetProSerilog.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Log/NetPro.Log/NetProSerilogOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Log/NetPro.Log/NetProSerilogOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Log/NetPro.Logging.AspNetCore/NetProExcepitonFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Log/NetPro.Logging.AspNetCore/NetProExcepitonFilter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.MQTTClient/MQTTClientOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MQTTClient/MQTTClientOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.MQTTClient/NetPro.MQTTClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MQTTClient/NetPro.MQTTClient.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.MQTTClient/ServiceCollectionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MQTTClient/ServiceCollectionExtension.cs -------------------------------------------------------------------------------- /src/Library/NetPro.MQTTClient/Startup/ApiProxyStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MQTTClient/Startup/ApiProxyStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.MQTTClient/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MQTTClient/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.MQTTClient/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MQTTClient/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.MongoDb/MongoDBMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MongoDb/MongoDBMulti.cs -------------------------------------------------------------------------------- /src/Library/NetPro.MongoDb/MongoDbBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MongoDb/MongoDbBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.MongoDb/MongoDbOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MongoDb/MongoDbOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.MongoDb/NetPro.MongoDb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MongoDb/NetPro.MongoDb.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.MongoDb/Startup/NetProMongoDBMultiStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MongoDb/Startup/NetProMongoDBMultiStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.MongoDb/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MongoDb/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.MongoDb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.MongoDb/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Prometheus/NetPro.Prometheus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Prometheus/NetPro.Prometheus.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Prometheus/Startup/HostingPrometheusStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Prometheus/Startup/HostingPrometheusStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Prometheus/Startup/PrometheusStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Prometheus/Startup/PrometheusStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Prometheus/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Prometheus/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Prometheus/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Prometheus/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Proxy/ApiClientFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Proxy/ApiClientFilter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Proxy/HttpProxyServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Proxy/HttpProxyServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Proxy/NetPro.Proxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Proxy/NetPro.Proxy.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Proxy/Startup/ApiProxyStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Proxy/Startup/ApiProxyStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Proxy/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Proxy/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Proxy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Proxy/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/AuthenticationBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/AuthenticationBasic.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/AuthenticationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/AuthenticationInfo.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/IPulsarQueneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/IPulsarQueneService.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/NetPro.Pulsar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/NetPro.Pulsar.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/PulsarConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/PulsarConfigExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/PulsarOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/PulsarOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/PulsarQueneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/PulsarQueneService.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/PulsarServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/PulsarServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/Startup/NetProPulsarStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/Startup/NetProPulsarStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/WebApiClient/ApiAttribute/BasicAuthorizationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/WebApiClient/ApiAttribute/BasicAuthorizationAttribute.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/WebApiClient/IPulsarAdminApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/WebApiClient/IPulsarAdminApi.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Pulsar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Pulsar/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/AuthUtil/AliyunMechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/AuthUtil/AliyunMechanism.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/AuthUtil/AliyunMechanismFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/AuthUtil/AliyunMechanismFactory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/AuthUtil/AliyunUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/AuthUtil/AliyunUtils.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/Configuration/RabbitMqClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/Configuration/RabbitMqClientOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/Configuration/RabbitMqExchangeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/Configuration/RabbitMqExchangeOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/Configuration/RabbitMqQueueOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/Configuration/RabbitMqQueueOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/ExchangeServiceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/ExchangeServiceDescriptor.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/IAsyncMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/IAsyncMessageHandler.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/IAsyncNonCyclicMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/IAsyncNonCyclicMessageHandler.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/IMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/IMessageHandler.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/INonCyclicMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/INonCyclicMessageHandler.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/IQueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/IQueueService.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/MessageHandlerRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/MessageHandlerRouter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/NetPro.RabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/NetPro.RabbitMQ.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/QueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/QueueService.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/RabbitMqClientDependencyInjectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/RabbitMqClientDependencyInjectionExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/RabbitMqExchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/RabbitMqExchange.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RabbitMQ/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RabbitMQ/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/Common.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/CsRedisManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/CsRedisManager.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/IRedisManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/IRedisManager.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/ISerializer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/NetPro.RedisManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/NetPro.RedisManager.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/NewtonsoftSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/NewtonsoftSerializer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/NullCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/NullCache.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/RedisCacheComponentEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/RedisCacheComponentEnum.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/RedisCacheOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/RedisCacheOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/RedisServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/RedisServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/StackExchangeRedisManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/StackExchangeRedisManager.cs -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.RedisManager/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.RedisManager/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/Common.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/NetPro.ResponseCache.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/NetPro.ResponseCache.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/PostResponseCacheAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/PostResponseCacheAttribute.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/PostResponseCacheMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/PostResponseCacheMiddleware.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/ResponseCacheOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/ResponseCacheOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/ResponseCachingExtensionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/ResponseCachingExtensionService.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/Startup/ResponseCacheStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/Startup/ResponseCacheStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseCache/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseCache/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseResult/IResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseResult/IResponseResult.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ResponseResult/NetPro.ResponseResult.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ResponseResult/NetPro.ResponseResult.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Serilog/NetPro.Serilog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Serilog/NetPro.Serilog.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Serilog/Startup/NetProSerilogStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Serilog/Startup/NetProSerilogStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Serilog/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Serilog/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.ShareRequestData/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ShareRequestData/Common.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ShareRequestData/NetPro.ShareRequestBody.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ShareRequestData/NetPro.ShareRequestBody.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.ShareRequestData/ResponseCacheData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ShareRequestData/ResponseCacheData.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ShareRequestData/ShareRequestBodyMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ShareRequestData/ShareRequestBodyMiddleware.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ShareRequestData/ShareRequestBodyServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ShareRequestData/ShareRequestBodyServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ShareRequestData/ShareResponseBodyFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ShareRequestData/ShareResponseBodyFilter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ShareRequestData/Startup/ShareBodyStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ShareRequestData/Startup/ShareBodyStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ShareRequestData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ShareRequestData/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/IgnoreSignAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/IgnoreSignAttribute.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/NetPro.Sign.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/NetPro.Sign.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/SignCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/SignCommon.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/SignMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/SignMiddleware.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/Startup/SignStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/Startup/SignStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/VerifySignAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/VerifySignAttribute.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/VerifySignDefaultFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/VerifySignDefaultFilter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/VerifySignOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/VerifySignOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/VerifySignServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/VerifySignServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Sign/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Sign/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/NetPro.StackExchange.Redis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/NetPro.StackExchange.Redis.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.AspNetCore/Extensions/IApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.AspNetCore/Extensions/IApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.AspNetCore/Extensions/IServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.AspNetCore/Extensions/IServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.AspNetCore/Midllewares/RedisInformationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.AspNetCore/Midllewares/RedisInformationMiddleware.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.AspNetCore/Midllewares/RedisMiddlewareAccessOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.AspNetCore/Midllewares/RedisMiddlewareAccessOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisCacheClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisCacheClient.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisCacheConnectionPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisCacheConnectionPoolManager.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.Hash.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.Lists.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.PubSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.PubSub.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.Sort.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Abstractions/IRedisDatabase.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Configuration/RedisConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Configuration/RedisConfiguration.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Configuration/RedisHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Configuration/RedisHost.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Configuration/ServerEnumerationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Configuration/ServerEnumerationStrategy.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Extensions/ValueLengthExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Extensions/ValueLengthExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/ISerializer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/NullCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/NullCache.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisCacheClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisCacheClient.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisCacheConnectionPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisCacheConnectionPoolManager.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.Hash.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.List.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.PubSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.PubSub.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.Sort.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Implementations/RedisDatabase.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Models/ConnectionPoolInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Models/ConnectionPoolInformation.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Models/InfoDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/Models/InfoDetail.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/ServerIteration/ServerEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/ServerIteration/ServerEnumerable.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/ServerIteration/ServerIteratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/StackExchange.Redis.Extensions.Core/ServerIteration/ServerIteratorFactory.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/docs/markdown.md: -------------------------------------------------------------------------------- 1 | # 2 | StackExchange.Redis 3 | 4 | 单机redis: 5 | 10w万Set 花费2069毫秒 6 | -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.Newtonsoft/NewtonsoftSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.Newtonsoft/NewtonsoftSerializer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/CultureCustomConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/CultureCustomConverter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/StringToIntCustomConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/StringToIntCustomConverter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/TimeSpanConverter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/TimezoneCustomConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/Converters/TimezoneCustomConverter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/SerializationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/SerializationOptions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/SystemTextJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.StackExchange.Redis/serializers/StackExchange.Redis.Extensions.System.Text.Json/SystemTextJsonSerializer.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/EngineContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/EngineContext.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/IEngine.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/INetProStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/INetProStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/IStartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/IStartupTask.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/NetPro.Startup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/NetPro.Startup.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/NetProEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/NetProEngine.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/NetProStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/NetProStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/ReplaceStartupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/ReplaceStartupAttribute.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/Singleton.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Startup/startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Startup/startup.json -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/CustomerHeaderParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/CustomerHeaderParameter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/CustomerQueryParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/CustomerQueryParameter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/Index.html -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/IndexDark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/IndexDark.html -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/NetPro.Swagger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/NetPro.Swagger.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/NetProSwaggerServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/NetProSwaggerServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/Startup/SwaggerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/Startup/SwaggerStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/SwaggerDefaultValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/SwaggerDefaultValueAttribute.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/SwaggerDefaultValueFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/SwaggerDefaultValueFilter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/SwaggerFileUploadFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/SwaggerFileUploadFilter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/SwaggerOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/SwaggerOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Swagger/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Swagger/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Taos/NetPro.Taos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Taos/NetPro.Taos.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Taos/Startup/NetProTaosMultiStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Taos/Startup/NetProTaosMultiStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Taos/TaosOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Taos/TaosOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Taos/TaosServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Taos/TaosServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Taos/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Taos/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Taos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Taos/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Tdengine/NetPro.Tdengine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Tdengine/NetPro.Tdengine.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Tdengine/Startup/NetProTdengineStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Tdengine/Startup/NetProTdengineStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Tdengine/TdengineMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Tdengine/TdengineMulti.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Tdengine/TdengineOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Tdengine/TdengineOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Tdengine/TdengineServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Tdengine/TdengineServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Tdengine/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Tdengine/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.Tdengine/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Tdengine/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/AppDomainTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/AppDomainTypeFinder.cs -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/CommonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/CommonHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/FileServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/FileServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/INetProFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/INetProFileProvider.cs -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/ITypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/ITypeFinder.cs -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/NetPro.TypeFinder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/NetPro.TypeFinder.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/NetProFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/NetProFileProvider.cs -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/TypeFinderOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/TypeFinderOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/WebAppTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/WebAppTypeFinder.cs -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.TypeFinder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.TypeFinder/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Extenisons/Extensions.Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Extenisons/Extensions.Collection.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Extenisons/Extensions.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Extenisons/Extensions.Common.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Extenisons/Extensions.Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Extenisons/Extensions.Convert.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Extenisons/Extensions.Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Extenisons/Extensions.Enum.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Extenisons/Extensions.Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Extenisons/Extensions.Linq.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Extenisons/Extensions.Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Extenisons/Extensions.Reflection.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Extenisons/Extensions.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Extenisons/Extensions.String.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/CommonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/CommonHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/Const.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/ConvertHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/ConvertHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/EncryptHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/EncryptHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/EnumHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/ExcelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/ExcelHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/IdHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/IdHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/Internal/ObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/Internal/ObjectId.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/Internal/RSAHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/Internal/RSAHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/LinqHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/LinqHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/Property.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/ReflectionHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/RegexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/RegexHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/SignHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/SignHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/TimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/TimeHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/Validation.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/Helpers/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/Helpers/XmlHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Utility/NetPro.Utility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Utility/NetPro.Utility.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Compression/ResponseCompressionVaryWorkaroundMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Compression/ResponseCompressionVaryWorkaroundMiddleware.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Configuration/HostingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Configuration/HostingConfig.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Configuration/NetProOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Configuration/NetProOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Consts/EnumAppPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Consts/EnumAppPlatform.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Controllers/AnonymousApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Controllers/AnonymousApiController.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Controllers/ApiControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Controllers/ApiControllerBase.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Controllers/AuthorizeApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Controllers/AuthorizeApiController.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Extensions/Extensions.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Extensions/Extensions.Common.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Extensions/Extensions.Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Extensions/Extensions.Identity.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Filters/BenchmarkActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Filters/BenchmarkActionFilter.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Helper/ActionFilterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Helper/ActionFilterHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Helper/CommonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Helper/CommonHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Helper/ConvertHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Helper/ConvertHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Helper/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Helper/EnumHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Helper/IWebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Helper/IWebHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Helper/RegexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Helper/RegexHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Helper/WebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Helper/WebHelper.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Helper/XMLProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Helper/XMLProcess.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Models/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Models/PagedList.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Models/ResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Models/ResponseResult.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Models/SearchPageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Models/SearchPageBase.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/NetPro.Web.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/NetPro.Web.Api.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Providers/CustomMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Providers/CustomMetadataProvider.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Startup/ErrorHandlerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Startup/ErrorHandlerStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Startup/NetProCoreStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Startup/NetProCoreStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Startup/RoutingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Startup/RoutingStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Startup/StaticFilesStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Startup/StaticFilesStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/Validators/BaseValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/Validators/BaseValidator.cs -------------------------------------------------------------------------------- /src/Library/NetPro.Web.Api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.Web.Api/readme.md -------------------------------------------------------------------------------- /src/Library/NetPro.ZeroMQ/NetPro.ZeroMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ZeroMQ/NetPro.ZeroMQ.csproj -------------------------------------------------------------------------------- /src/Library/NetPro.ZeroMQ/Startup/ZeroMQStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ZeroMQ/Startup/ZeroMQStartup.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ZeroMQ/ZeroMQOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ZeroMQ/ZeroMQOption.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ZeroMQ/ZeroMQServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ZeroMQ/ZeroMQServiceExtensions.cs -------------------------------------------------------------------------------- /src/Library/NetPro.ZeroMQ/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ZeroMQ/app.json -------------------------------------------------------------------------------- /src/Library/NetPro.ZeroMQ/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Library/NetPro.ZeroMQ/readme.md -------------------------------------------------------------------------------- /src/Library/TODO.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NetProMicroservice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/NetProMicroservice.sln -------------------------------------------------------------------------------- /src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/NuGet.config -------------------------------------------------------------------------------- /src/PushNuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/PushNuget.ps1 -------------------------------------------------------------------------------- /src/PushNuget/PushNuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/PushNuget/PushNuget.ps1 -------------------------------------------------------------------------------- /src/PushNuget/nuget.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/PushNuget/nuget.txt -------------------------------------------------------------------------------- /src/Template/API/Content/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/.gitignore -------------------------------------------------------------------------------- /src/Template/API/Content/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/.template.config/template.json -------------------------------------------------------------------------------- /src/Template/API/Content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/README.md -------------------------------------------------------------------------------- /src/Template/API/Content/cicd/XXX/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/cicd/XXX/Dockerfile -------------------------------------------------------------------------------- /src/Template/API/Content/cicd/XXX/istio.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/API/Content/cicd/XXX/k8s.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/API/Content/docs/remark.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/API/Content/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/global.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/NuGet.config -------------------------------------------------------------------------------- /src/Template/API/Content/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/README.md -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX.sln -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/Dockerfile -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/Globalization.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/Globalization.db -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/Program.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/Protos/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此文件夹存放所有grpc的proto描述文件 -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/Protos/greet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/Protos/greet.proto -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/README.md -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/StartTask/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 继承IStartupTaskAsync接口的类为启动初始化时执行的任务,一般用于初始化等操作 -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/StartTask/TimerjobStartTask .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/StartTask/TimerjobStartTask .cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/Startup/ApiStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/Startup/ApiStartup.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/Startup/EndpointsStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/Startup/EndpointsStartup.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Controller/FreeSQLDemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Controller/FreeSQLDemoController.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Entity/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Entity/Company.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Entity/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Entity/User.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Entity/UserRelation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Entity/UserRelation.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Entity/XXX.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Entity/XXX.Entity.csproj -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/FreeSqlStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/FreeSqlStartup.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Mapper/XXXMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Mapper/XXXMapper.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Model/UserSearchAo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Model/UserSearchAo.cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/README.md -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Service/FreeSQLDemoService .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.Plugin.FreeSql/Service/FreeSQLDemoService .cs -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/XXX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/XXX.csproj -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/appsettings.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/checker.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/checker.Development.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/checker.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/connection.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/consul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/consul.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/globalization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/globalization.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/prometheus.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/redis.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/serilog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/serilog.json -------------------------------------------------------------------------------- /src/Template/API/Content/src/XXX/config.json/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/Content/src/XXX/config.json/swagger.json -------------------------------------------------------------------------------- /src/Template/API/NetProApi.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/NetProApi.nuspec -------------------------------------------------------------------------------- /src/Template/API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/README.md -------------------------------------------------------------------------------- /src/Template/API/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/API/logo2.png -------------------------------------------------------------------------------- /src/Template/gRPC/Content/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/.gitignore -------------------------------------------------------------------------------- /src/Template/gRPC/Content/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/.template.config/template.json -------------------------------------------------------------------------------- /src/Template/gRPC/Content/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/gRPC/Content/cicd/XXX/Dockerfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/gRPC/Content/cicd/XXX/istio.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/gRPC/Content/cicd/XXX/k8s.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/gRPC/Content/docs/remark.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/gRPC/Content/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/global.json -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/NuGet.config -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/DemoOne/Protos/greetone.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/DemoOne/Protos/greetone.proto -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/DemoOne/Services/GreeterOneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/DemoOne/Services/GreeterOneService.cs -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/DemoTwo/Protos/greettwo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/DemoTwo/Protos/greettwo.proto -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/DemoTwo/Services/GreeterTwoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/DemoTwo/Services/GreeterTwoService.cs -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/Dockerfile -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/Program.cs -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/Startup/startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/Startup/startup.json -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/XXX.GrpcServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/XXX.GrpcServer.csproj -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/appsettings.json -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/config.json/consul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/config.json/consul.json -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.GrpcServer/config.json/serilog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.GrpcServer/config.json/serilog.json -------------------------------------------------------------------------------- /src/Template/gRPC/Content/src/XXX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/Content/src/XXX.sln -------------------------------------------------------------------------------- /src/Template/gRPC/NetProGrpc.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/NetProGrpc.nuspec -------------------------------------------------------------------------------- /src/Template/gRPC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/README.md -------------------------------------------------------------------------------- /src/Template/gRPC/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Template/gRPC/logo2.png -------------------------------------------------------------------------------- /src/Test/Native/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/Native/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /src/Test/Native/Native.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/Native/Native.csproj -------------------------------------------------------------------------------- /src/Test/Native/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/Native/Program.cs -------------------------------------------------------------------------------- /src/Test/Native/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/Native/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Test/Native/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/Native/Startup.cs -------------------------------------------------------------------------------- /src/Test/Native/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/Native/WeatherForecast.cs -------------------------------------------------------------------------------- /src/Test/Native/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/Native/appsettings.Development.json -------------------------------------------------------------------------------- /src/Test/Native/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/Native/appsettings.json -------------------------------------------------------------------------------- /src/Test/TestConsole/OptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/TestConsole/OptionTest.cs -------------------------------------------------------------------------------- /src/Test/TestConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/TestConsole/Program.cs -------------------------------------------------------------------------------- /src/Test/TestConsole/RedisCacheOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/TestConsole/RedisCacheOption.cs -------------------------------------------------------------------------------- /src/Test/TestConsole/TestConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/TestConsole/TestConsole.csproj -------------------------------------------------------------------------------- /src/Test/TestConsole/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Test/TestConsole/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/TestConsole/appsettings.json -------------------------------------------------------------------------------- /src/Test/UnitTest.StackExchangeRedis/CsRedis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/UnitTest.StackExchangeRedis/CsRedis.cs -------------------------------------------------------------------------------- /src/Test/UnitTest.StackExchangeRedis/StackExchangeRedis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/UnitTest.StackExchangeRedis/StackExchangeRedis.cs -------------------------------------------------------------------------------- /src/Test/UnitTest.StackExchangeRedis/UnitTest.StackExchangeRedis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/UnitTest.StackExchangeRedis/UnitTest.StackExchangeRedis.csproj -------------------------------------------------------------------------------- /src/Test/XXX30.API/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /src/Test/XXX30.API/Plugin/readme.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/Plugin/readme.text -------------------------------------------------------------------------------- /src/Test/XXX30.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/Program.cs -------------------------------------------------------------------------------- /src/Test/XXX30.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Test/XXX30.API/Startup/ApiStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/Startup/ApiStartup.cs -------------------------------------------------------------------------------- /src/Test/XXX30.API/Startup/EndpointsStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/Startup/EndpointsStartup.cs -------------------------------------------------------------------------------- /src/Test/XXX30.API/StartupConfig/startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/StartupConfig/startup.json -------------------------------------------------------------------------------- /src/Test/XXX30.API/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/WeatherForecast.cs -------------------------------------------------------------------------------- /src/Test/XXX30.API/XXX30.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/XXX30.API.csproj -------------------------------------------------------------------------------- /src/Test/XXX30.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Test/XXX30.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX30.API/appsettings.json -------------------------------------------------------------------------------- /src/Test/XXX60.API/EndpointsStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX60.API/EndpointsStartup.cs -------------------------------------------------------------------------------- /src/Test/XXX60.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX60.API/Program.cs -------------------------------------------------------------------------------- /src/Test/XXX60.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX60.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Test/XXX60.API/StartupConfig/startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX60.API/StartupConfig/startup.json -------------------------------------------------------------------------------- /src/Test/XXX60.API/XXX60.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX60.API/XXX60.API.csproj -------------------------------------------------------------------------------- /src/Test/XXX60.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX60.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Test/XXX60.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX60.API/appsettings.json -------------------------------------------------------------------------------- /src/Test/XXX60.API/serilog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/Test/XXX60.API/serilog.json -------------------------------------------------------------------------------- /src/sample/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/NuGet.config -------------------------------------------------------------------------------- /src/sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/README.md -------------------------------------------------------------------------------- /src/sample/XXX.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/Dockerfile -------------------------------------------------------------------------------- /src/sample/XXX.API/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/GlobalizationDemo/Controllers/GlobalizationDemoController .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/GlobalizationDemo/Controllers/GlobalizationDemoController .cs -------------------------------------------------------------------------------- /src/sample/XXX.API/GlobalizationDemo/Service/GlobalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/GlobalizationDemo/Service/GlobalizationService.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/MiddlewareDemo/Controllers/MiddlewareDemoController .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/MiddlewareDemo/Controllers/MiddlewareDemoController .cs -------------------------------------------------------------------------------- /src/sample/XXX.API/MiddlewareDemo/Model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/MiddlewareDemo/Model/README.md -------------------------------------------------------------------------------- /src/sample/XXX.API/MiddlewareDemo/Proxy/IBaiduProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/MiddlewareDemo/Proxy/IBaiduProxy.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/MiddlewareDemo/RemotingStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/MiddlewareDemo/RemotingStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/MiddlewareDemo/Service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/MiddlewareDemo/Service/README.md -------------------------------------------------------------------------------- /src/sample/XXX.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/Program.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/sample/XXX.API/Protos/greet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/Protos/greet.proto -------------------------------------------------------------------------------- /src/sample/XXX.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/README.md -------------------------------------------------------------------------------- /src/sample/XXX.API/StartTask/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 继承IStartupTaskAsync接口的类为启动初始化时执行的任务,一般用于初始化等操作 -------------------------------------------------------------------------------- /src/sample/XXX.API/StartTask/TimerjobStartTask .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/StartTask/TimerjobStartTask .cs -------------------------------------------------------------------------------- /src/sample/XXX.API/Startup/ApiStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/Startup/ApiStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/Startup/CustomErrorHandlerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/Startup/CustomErrorHandlerStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/Startup/EndpointsStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/Startup/EndpointsStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/Startup/startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/Startup/startup.json -------------------------------------------------------------------------------- /src/sample/XXX.API/TimeZoneDemo/Controllers/TimeZoneDemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/TimeZoneDemo/Controllers/TimeZoneDemoController.cs -------------------------------------------------------------------------------- /src/sample/XXX.API/XXX.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/XXX.API.csproj -------------------------------------------------------------------------------- /src/sample/XXX.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/sample/XXX.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/appsettings.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/checker.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/checker.Development.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/checker.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/connection.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/consul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/consul.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/cors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/cors.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/easynetq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/easynetq.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/globalization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/globalization.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/mongo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/mongo.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/mqtt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/mqtt.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/prometheus.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/proxy.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/pulsar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/pulsar.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/redis.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/responsecache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/responsecache.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/serilog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/serilog.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/swagger.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/tdengine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/tdengine.json -------------------------------------------------------------------------------- /src/sample/XXX.API/config.json/zeromq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/config.json/zeromq.json -------------------------------------------------------------------------------- /src/sample/XXX.API/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/runtimeconfig.template.json -------------------------------------------------------------------------------- /src/sample/XXX.API/tool/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此目录存放工具类应用,默认 linux x64 版本 -------------------------------------------------------------------------------- /src/sample/XXX.API/tool/dotnet-counters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/tool/dotnet-counters -------------------------------------------------------------------------------- /src/sample/XXX.API/tool/dotnet-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/tool/dotnet-dump -------------------------------------------------------------------------------- /src/sample/XXX.API/tool/dotnet-gcdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/tool/dotnet-gcdump -------------------------------------------------------------------------------- /src/sample/XXX.API/tool/dotnet-stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/tool/dotnet-stack -------------------------------------------------------------------------------- /src/sample/XXX.API/tool/dotnet-trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.API/tool/dotnet-trace -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.EasyNetQ/Controller/EasyNetQController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.EasyNetQ/Controller/EasyNetQController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.EasyNetQ/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.EasyNetQ/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.EasyNetQ/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此项目为示例项目,为快速开发提供相关场景的代码参考,实际开发可删除。 -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.EasyNetQ/Service/EasyNetQService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.EasyNetQ/Service/EasyNetQService.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.EasyNetQ/StartTask/RabbitMqStartTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.EasyNetQ/StartTask/RabbitMqStartTask.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.EasyNetQ/XXX.Plugin.EasyNetQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.EasyNetQ/XXX.Plugin.EasyNetQ.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.EasyNetQ/XXXEasyNetQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.EasyNetQ/XXXEasyNetQ.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeRedis/Controller/FreeRedisDemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeRedis/Controller/FreeRedisDemoController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeRedis/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeRedis/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeRedis/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此项目为示例项目,为快速开发提供相关场景的代码参考,实际开发可删除。 -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeRedis/RedisStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeRedis/RedisStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeRedis/Service/RedisService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeRedis/Service/RedisService.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeRedis/XXX.Plugin.FreeRedis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeRedis/XXX.Plugin.FreeRedis.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Controller/FreeSQLAsTableController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Controller/FreeSQLAsTableController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Controller/FreeSQLDemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Controller/FreeSQLDemoController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Entity/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Entity/Company.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Entity/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Entity/Log.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Entity/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Entity/User.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Entity/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Entity/UserProfile.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Entity/UserRelation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Entity/UserRelation.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Entity/XXX.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Entity/XXX.Entity.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Extensions/Extenisons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Extensions/Extenisons.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/FreeSqlStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/FreeSqlStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Mapper/XXXMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Mapper/XXXMapper.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Model/LogSearchAo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Model/LogSearchAo.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Model/UserSearchAo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Model/UserSearchAo.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此项目为示例项目,为快速开发提供相关场景的代码参考,实际开发可删除。 -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Service/FreeSQLAsTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Service/FreeSQLAsTableService.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/Service/FreeSQLDemoService .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/Service/FreeSQLDemoService .cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/StartTask/AutoCreateTableStartTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/StartTask/AutoCreateTableStartTask.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/StartTask/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 继承IStartupTaskAsync接口的类为启动初始化时执行的任务,一般用于初始化等操作 -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.FreeSql/XXX.Plugin.FreeSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.FreeSql/XXX.Plugin.FreeSql.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MQTTServer/MQTTServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MQTTServer/MQTTServerStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MQTTServer/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此项目为示例项目,为快速开发提供相关场景的代码参考,实际开发可删除。 -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MQTTServer/StartTask/MQTTClientTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MQTTServer/StartTask/MQTTClientTask.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MQTTServer/StartTask/MQTTServerTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MQTTServer/StartTask/MQTTServerTask.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MQTTServer/XXX.Plugin.MQTTServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MQTTServer/XXX.Plugin.MQTTServer.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MediatR/Controller/MediatRDemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MediatR/Controller/MediatRDemoController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MediatR/Event/ConsumHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MediatR/Event/ConsumHandler.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MediatR/Event/ResponeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MediatR/Event/ResponeEvent.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MediatR/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MediatR/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MediatR/MediatRStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MediatR/MediatRStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MediatR/Model/SendRequestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MediatR/Model/SendRequestModel.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MediatR/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此项目为示例项目,为快速开发提供相关场景的代码参考,实际开发可删除。 -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MediatR/XXX.Plugin.MediatR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MediatR/XXX.Plugin.MediatR.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MongoDB/Controller/MongoDBDemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MongoDB/Controller/MongoDBDemoController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MongoDB/Entity/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MongoDB/Entity/Product.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MongoDB/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MongoDB/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MongoDB/MongoDBDemoStartup .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MongoDB/MongoDBDemoStartup .cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MongoDB/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此项目为示例项目,为快速开发提供相关场景的代码参考,实际开发可删除。 -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MongoDB/Service/MongoDBDemoService .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MongoDB/Service/MongoDBDemoService .cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.MongoDB/XXX.Plugin.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.MongoDB/XXX.Plugin.MongoDB.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Pulsar/Controller/PulsarTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Pulsar/Controller/PulsarTestController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Pulsar/PulsarStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Pulsar/PulsarStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Pulsar/Task/PulsarTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Pulsar/Task/PulsarTask.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Pulsar/XXX.Plugin.Pulsar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Pulsar/XXX.Plugin.Pulsar.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Redis/Controller/RedisDemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Redis/Controller/RedisDemoController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Redis/Controller/ScriptController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Redis/Controller/ScriptController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Redis/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Redis/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Redis/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 此项目为示例项目,为快速开发提供相关场景的代码参考,实际开发可删除。 -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Redis/RedisStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Redis/RedisStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Redis/Service/RedisService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Redis/Service/RedisService.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Redis/XXX.Plugin.Redis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Redis/XXX.Plugin.Redis.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Tdengine/Controller/TaosController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Tdengine/Controller/TaosController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Tdengine/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Tdengine/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Tdengine/Model/TaosAo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Tdengine/Model/TaosAo.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Tdengine/Proxy/ITaosProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Tdengine/Proxy/ITaosProxy.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Tdengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Tdengine/README.md -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Tdengine/Service/TaosService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Tdengine/Service/TaosService.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Tdengine/TdengineStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Tdengine/TdengineStartup.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.Tdengine/XXX.Plugin.Tdengine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.Tdengine/XXX.Plugin.Tdengine.csproj -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.ZeroMQ/Controller/ZeroMQController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.ZeroMQ/Controller/ZeroMQController.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.ZeroMQ/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.ZeroMQ/GlobalUsings.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.ZeroMQ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.ZeroMQ/README.md -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.ZeroMQ/StartTask/NetMqTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.ZeroMQ/StartTask/NetMqTask.cs -------------------------------------------------------------------------------- /src/sample/XXX.Plugin.ZeroMQ/XXX.Plugin.ZeroMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/src/sample/XXX.Plugin.ZeroMQ/XXX.Plugin.ZeroMQ.csproj -------------------------------------------------------------------------------- /tye.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeonKou/NetPro/HEAD/tye.yaml --------------------------------------------------------------------------------