├── .gitignore ├── LICENSE ├── README.md ├── nuget.txt ├── sample ├── Sample │ ├── MemoryConfiguration.cs │ ├── Program.cs │ └── Sample.csproj ├── Sample2 │ ├── MemoryConfiguration.cs │ ├── Program.cs │ └── Sample2.csproj └── SampleSimple │ ├── Program.cs │ └── SampleSimple.csproj ├── serilog-settings-reloader.sln ├── src ├── Serilog.Settings.Reloader.csproj ├── Serilog.Settings.Reloader.xml ├── SerilogConfigurationLoaderExtensions.cs └── SwitchableLogger.cs └── test └── Serilog.Settings.Reloader.Test ├── MemoryConfiguration.cs ├── Serilog.Settings.Reloader.Test.csproj ├── SerilogConfigurationLoaderExtensionsTests.cs └── SerilogSwitchTests.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/README.md -------------------------------------------------------------------------------- /nuget.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/nuget.txt -------------------------------------------------------------------------------- /sample/Sample/MemoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/sample/Sample/MemoryConfiguration.cs -------------------------------------------------------------------------------- /sample/Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/sample/Sample/Program.cs -------------------------------------------------------------------------------- /sample/Sample/Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/sample/Sample/Sample.csproj -------------------------------------------------------------------------------- /sample/Sample2/MemoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/sample/Sample2/MemoryConfiguration.cs -------------------------------------------------------------------------------- /sample/Sample2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/sample/Sample2/Program.cs -------------------------------------------------------------------------------- /sample/Sample2/Sample2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/sample/Sample2/Sample2.csproj -------------------------------------------------------------------------------- /sample/SampleSimple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/sample/SampleSimple/Program.cs -------------------------------------------------------------------------------- /sample/SampleSimple/SampleSimple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/sample/SampleSimple/SampleSimple.csproj -------------------------------------------------------------------------------- /serilog-settings-reloader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/serilog-settings-reloader.sln -------------------------------------------------------------------------------- /src/Serilog.Settings.Reloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/src/Serilog.Settings.Reloader.csproj -------------------------------------------------------------------------------- /src/Serilog.Settings.Reloader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/src/Serilog.Settings.Reloader.xml -------------------------------------------------------------------------------- /src/SerilogConfigurationLoaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/src/SerilogConfigurationLoaderExtensions.cs -------------------------------------------------------------------------------- /src/SwitchableLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/src/SwitchableLogger.cs -------------------------------------------------------------------------------- /test/Serilog.Settings.Reloader.Test/MemoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/test/Serilog.Settings.Reloader.Test/MemoryConfiguration.cs -------------------------------------------------------------------------------- /test/Serilog.Settings.Reloader.Test/Serilog.Settings.Reloader.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/test/Serilog.Settings.Reloader.Test/Serilog.Settings.Reloader.Test.csproj -------------------------------------------------------------------------------- /test/Serilog.Settings.Reloader.Test/SerilogConfigurationLoaderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/test/Serilog.Settings.Reloader.Test/SerilogConfigurationLoaderExtensionsTests.cs -------------------------------------------------------------------------------- /test/Serilog.Settings.Reloader.Test/SerilogSwitchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tagcode/serilog-settings-reloader/HEAD/test/Serilog.Settings.Reloader.Test/SerilogSwitchTests.cs --------------------------------------------------------------------------------