├── .gitignore ├── LICENSE ├── README.md └── src ├── ActivitySourceLab ├── ActivitySourceLab.csproj └── Program.cs ├── AutoActivateLab ├── AutoActivateLab.csproj └── Program.cs ├── CLK.NetCoreLab.sln ├── ConfigurationLab ├── ConfigurationLab.csproj ├── FileSetting.json ├── Program.cs └── Utilities │ └── ConfigurationExtensions.cs ├── DiagnosticSourceLab ├── DiagnosticSourceLab.csproj └── Program.cs ├── HostedServiceLab ├── HostedServiceLab.csproj └── Program.cs ├── LoggerLab.Log4net ├── LoggerLab.Log4net.csproj ├── Program.cs ├── Utilities │ ├── ConfigureExtensions.cs │ ├── Log4netLogger.cs │ └── Log4netProvider.cs ├── appsettings.json └── log4net.config ├── LoggerLab.NLog ├── LoggerLab.NLog.csproj ├── Program.cs ├── appsettings.json └── nlog.config ├── LoggerLab.Serilog ├── LoggerLab.Serilog.csproj ├── Program.cs ├── appsettings.json └── serilog.json ├── LoggerLab ├── LoggerLab.csproj ├── Program.cs └── appsettings.json ├── NamedServiceLab ├── NamedServiceLab.csproj └── Program.cs ├── ObserverLab ├── ObserverLab.csproj ├── Program.cs └── Utilities │ └── Observable.cs ├── OpenTelemetryLab ├── OpenTelemetryLab.csproj └── Program.cs ├── OptionsLab ├── OptionsLab.csproj ├── Program.cs └── appsettings.json ├── ProgramServiceLab ├── Program.cs ├── ProgramServiceLab.csproj └── Utilities │ ├── Extensions │ ├── ServiceCollectionExtensions.cs │ └── TypeExtensions.cs │ ├── ProgramService.cs │ └── ServiceActivator.cs ├── QuartzLab ├── Program.cs └── QuartzLab.csproj ├── RegisterModuleLab ├── Program.cs └── RegisterModuleLab.csproj ├── RemoveServiceLab ├── Program.cs ├── RemoveServiceLab.csproj └── Utilities │ └── Extensions │ └── ServiceCollectionExtensions.cs ├── TemplateLab ├── Program.cs └── TemplateLab.csproj ├── TraceContextLab.SubService ├── Program.cs └── TraceContextLab.SubService.csproj ├── TraceContextLab ├── Program.cs └── TraceContextLab.csproj └── WithParameterLab ├── Program.cs └── WithParameterLab.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/README.md -------------------------------------------------------------------------------- /src/ActivitySourceLab/ActivitySourceLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ActivitySourceLab/ActivitySourceLab.csproj -------------------------------------------------------------------------------- /src/ActivitySourceLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ActivitySourceLab/Program.cs -------------------------------------------------------------------------------- /src/AutoActivateLab/AutoActivateLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/AutoActivateLab/AutoActivateLab.csproj -------------------------------------------------------------------------------- /src/AutoActivateLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/AutoActivateLab/Program.cs -------------------------------------------------------------------------------- /src/CLK.NetCoreLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/CLK.NetCoreLab.sln -------------------------------------------------------------------------------- /src/ConfigurationLab/ConfigurationLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ConfigurationLab/ConfigurationLab.csproj -------------------------------------------------------------------------------- /src/ConfigurationLab/FileSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ConfigurationLab/FileSetting.json -------------------------------------------------------------------------------- /src/ConfigurationLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ConfigurationLab/Program.cs -------------------------------------------------------------------------------- /src/ConfigurationLab/Utilities/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ConfigurationLab/Utilities/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/DiagnosticSourceLab/DiagnosticSourceLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/DiagnosticSourceLab/DiagnosticSourceLab.csproj -------------------------------------------------------------------------------- /src/DiagnosticSourceLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/DiagnosticSourceLab/Program.cs -------------------------------------------------------------------------------- /src/HostedServiceLab/HostedServiceLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/HostedServiceLab/HostedServiceLab.csproj -------------------------------------------------------------------------------- /src/HostedServiceLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/HostedServiceLab/Program.cs -------------------------------------------------------------------------------- /src/LoggerLab.Log4net/LoggerLab.Log4net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Log4net/LoggerLab.Log4net.csproj -------------------------------------------------------------------------------- /src/LoggerLab.Log4net/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Log4net/Program.cs -------------------------------------------------------------------------------- /src/LoggerLab.Log4net/Utilities/ConfigureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Log4net/Utilities/ConfigureExtensions.cs -------------------------------------------------------------------------------- /src/LoggerLab.Log4net/Utilities/Log4netLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Log4net/Utilities/Log4netLogger.cs -------------------------------------------------------------------------------- /src/LoggerLab.Log4net/Utilities/Log4netProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Log4net/Utilities/Log4netProvider.cs -------------------------------------------------------------------------------- /src/LoggerLab.Log4net/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Log4net/appsettings.json -------------------------------------------------------------------------------- /src/LoggerLab.Log4net/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Log4net/log4net.config -------------------------------------------------------------------------------- /src/LoggerLab.NLog/LoggerLab.NLog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.NLog/LoggerLab.NLog.csproj -------------------------------------------------------------------------------- /src/LoggerLab.NLog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.NLog/Program.cs -------------------------------------------------------------------------------- /src/LoggerLab.NLog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.NLog/appsettings.json -------------------------------------------------------------------------------- /src/LoggerLab.NLog/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.NLog/nlog.config -------------------------------------------------------------------------------- /src/LoggerLab.Serilog/LoggerLab.Serilog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Serilog/LoggerLab.Serilog.csproj -------------------------------------------------------------------------------- /src/LoggerLab.Serilog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Serilog/Program.cs -------------------------------------------------------------------------------- /src/LoggerLab.Serilog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Serilog/appsettings.json -------------------------------------------------------------------------------- /src/LoggerLab.Serilog/serilog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab.Serilog/serilog.json -------------------------------------------------------------------------------- /src/LoggerLab/LoggerLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab/LoggerLab.csproj -------------------------------------------------------------------------------- /src/LoggerLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab/Program.cs -------------------------------------------------------------------------------- /src/LoggerLab/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/LoggerLab/appsettings.json -------------------------------------------------------------------------------- /src/NamedServiceLab/NamedServiceLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/NamedServiceLab/NamedServiceLab.csproj -------------------------------------------------------------------------------- /src/NamedServiceLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/NamedServiceLab/Program.cs -------------------------------------------------------------------------------- /src/ObserverLab/ObserverLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ObserverLab/ObserverLab.csproj -------------------------------------------------------------------------------- /src/ObserverLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ObserverLab/Program.cs -------------------------------------------------------------------------------- /src/ObserverLab/Utilities/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ObserverLab/Utilities/Observable.cs -------------------------------------------------------------------------------- /src/OpenTelemetryLab/OpenTelemetryLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/OpenTelemetryLab/OpenTelemetryLab.csproj -------------------------------------------------------------------------------- /src/OpenTelemetryLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/OpenTelemetryLab/Program.cs -------------------------------------------------------------------------------- /src/OptionsLab/OptionsLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/OptionsLab/OptionsLab.csproj -------------------------------------------------------------------------------- /src/OptionsLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/OptionsLab/Program.cs -------------------------------------------------------------------------------- /src/OptionsLab/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/OptionsLab/appsettings.json -------------------------------------------------------------------------------- /src/ProgramServiceLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ProgramServiceLab/Program.cs -------------------------------------------------------------------------------- /src/ProgramServiceLab/ProgramServiceLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ProgramServiceLab/ProgramServiceLab.csproj -------------------------------------------------------------------------------- /src/ProgramServiceLab/Utilities/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ProgramServiceLab/Utilities/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/ProgramServiceLab/Utilities/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ProgramServiceLab/Utilities/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/ProgramServiceLab/Utilities/ProgramService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ProgramServiceLab/Utilities/ProgramService.cs -------------------------------------------------------------------------------- /src/ProgramServiceLab/Utilities/ServiceActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/ProgramServiceLab/Utilities/ServiceActivator.cs -------------------------------------------------------------------------------- /src/QuartzLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/QuartzLab/Program.cs -------------------------------------------------------------------------------- /src/QuartzLab/QuartzLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/QuartzLab/QuartzLab.csproj -------------------------------------------------------------------------------- /src/RegisterModuleLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/RegisterModuleLab/Program.cs -------------------------------------------------------------------------------- /src/RegisterModuleLab/RegisterModuleLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/RegisterModuleLab/RegisterModuleLab.csproj -------------------------------------------------------------------------------- /src/RemoveServiceLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/RemoveServiceLab/Program.cs -------------------------------------------------------------------------------- /src/RemoveServiceLab/RemoveServiceLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/RemoveServiceLab/RemoveServiceLab.csproj -------------------------------------------------------------------------------- /src/RemoveServiceLab/Utilities/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/RemoveServiceLab/Utilities/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/TemplateLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/TemplateLab/Program.cs -------------------------------------------------------------------------------- /src/TemplateLab/TemplateLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/TemplateLab/TemplateLab.csproj -------------------------------------------------------------------------------- /src/TraceContextLab.SubService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/TraceContextLab.SubService/Program.cs -------------------------------------------------------------------------------- /src/TraceContextLab.SubService/TraceContextLab.SubService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/TraceContextLab.SubService/TraceContextLab.SubService.csproj -------------------------------------------------------------------------------- /src/TraceContextLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/TraceContextLab/Program.cs -------------------------------------------------------------------------------- /src/TraceContextLab/TraceContextLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/TraceContextLab/TraceContextLab.csproj -------------------------------------------------------------------------------- /src/WithParameterLab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/WithParameterLab/Program.cs -------------------------------------------------------------------------------- /src/WithParameterLab/WithParameterLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clark159/CLK.NetCoreLab/HEAD/src/WithParameterLab/WithParameterLab.csproj --------------------------------------------------------------------------------