├── .gitignore ├── LICENSE ├── NuGet.Config ├── README.md ├── appveyor.yml ├── assets └── icon.png ├── serilog-sinks-testcorrelator.DotSettings ├── serilog-sinks-testcorrelator.sln ├── src └── Serilog.Sinks.TestCorrelator │ ├── LoggerAuditSinkConfigurationExtensions.cs │ ├── LoggerSinkConfigurationExtensions.cs │ ├── Serilog.Sinks.TestCorrelator.csproj │ ├── Serilog.Sinks.TestCorrelator.snk │ └── Sinks │ └── TestCorrelator │ ├── ITestCorrelatorContext.cs │ ├── IsExternalInit.cs │ ├── TestCorrelator.cs │ ├── TestCorrelatorContextId.cs │ ├── TestCorrelatorSink.cs │ └── TestCorrelatorSinkId.cs └── test └── Serilog.Sinks.TestCorrelator.Tests ├── Serilog.Sinks.TestCorrelator.Tests.csproj ├── TestCorrelatorSinkTests.cs └── TestCorrelatorTests.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/assets/icon.png -------------------------------------------------------------------------------- /serilog-sinks-testcorrelator.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/serilog-sinks-testcorrelator.DotSettings -------------------------------------------------------------------------------- /serilog-sinks-testcorrelator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/serilog-sinks-testcorrelator.sln -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/LoggerAuditSinkConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/LoggerAuditSinkConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/LoggerSinkConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/LoggerSinkConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/Serilog.Sinks.TestCorrelator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/Serilog.Sinks.TestCorrelator.csproj -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/Serilog.Sinks.TestCorrelator.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/Serilog.Sinks.TestCorrelator.snk -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/ITestCorrelatorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/ITestCorrelatorContext.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/IsExternalInit.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/TestCorrelator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/TestCorrelator.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/TestCorrelatorContextId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/TestCorrelatorContextId.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/TestCorrelatorSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/TestCorrelatorSink.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/TestCorrelatorSinkId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/src/Serilog.Sinks.TestCorrelator/Sinks/TestCorrelator/TestCorrelatorSinkId.cs -------------------------------------------------------------------------------- /test/Serilog.Sinks.TestCorrelator.Tests/Serilog.Sinks.TestCorrelator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/test/Serilog.Sinks.TestCorrelator.Tests/Serilog.Sinks.TestCorrelator.Tests.csproj -------------------------------------------------------------------------------- /test/Serilog.Sinks.TestCorrelator.Tests/TestCorrelatorSinkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/test/Serilog.Sinks.TestCorrelator.Tests/TestCorrelatorSinkTests.cs -------------------------------------------------------------------------------- /test/Serilog.Sinks.TestCorrelator.Tests/TestCorrelatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchBodmer/serilog-sinks-testcorrelator/HEAD/test/Serilog.Sinks.TestCorrelator.Tests/TestCorrelatorTests.cs --------------------------------------------------------------------------------