├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Build.ps1 ├── CHANGES.md ├── LICENSE ├── README.md ├── appveyor.yml ├── assets ├── Screenshot.png ├── Serilog.snk └── icon.png ├── sample └── DebugDemo │ ├── DebugDemo.csproj │ └── Program.cs ├── serilog-sinks-debug.sln ├── src └── Serilog.Sinks.Debug │ ├── LoggerSinkConfigurationDebugExtensions.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Serilog.Sinks.Debug.csproj │ └── Sinks │ └── Debug │ └── DebugSink.cs └── test └── Serilog.Sinks.Debug.Tests ├── DebugSinkTests.cs └── Serilog.Sinks.Debug.Tests.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/.travis.yml -------------------------------------------------------------------------------- /Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/Build.ps1 -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/assets/Screenshot.png -------------------------------------------------------------------------------- /assets/Serilog.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/assets/Serilog.snk -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/assets/icon.png -------------------------------------------------------------------------------- /sample/DebugDemo/DebugDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/sample/DebugDemo/DebugDemo.csproj -------------------------------------------------------------------------------- /sample/DebugDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/sample/DebugDemo/Program.cs -------------------------------------------------------------------------------- /serilog-sinks-debug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/serilog-sinks-debug.sln -------------------------------------------------------------------------------- /src/Serilog.Sinks.Debug/LoggerSinkConfigurationDebugExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/src/Serilog.Sinks.Debug/LoggerSinkConfigurationDebugExtensions.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Debug/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/src/Serilog.Sinks.Debug/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Debug/Serilog.Sinks.Debug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/src/Serilog.Sinks.Debug/Serilog.Sinks.Debug.csproj -------------------------------------------------------------------------------- /src/Serilog.Sinks.Debug/Sinks/Debug/DebugSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/src/Serilog.Sinks.Debug/Sinks/Debug/DebugSink.cs -------------------------------------------------------------------------------- /test/Serilog.Sinks.Debug.Tests/DebugSinkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/test/Serilog.Sinks.Debug.Tests/DebugSinkTests.cs -------------------------------------------------------------------------------- /test/Serilog.Sinks.Debug.Tests/Serilog.Sinks.Debug.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-sinks-debug/HEAD/test/Serilog.Sinks.Debug.Tests/Serilog.Sinks.Debug.Tests.csproj --------------------------------------------------------------------------------