├── .editorconfig ├── .gitattributes ├── .gitignore ├── Build.ps1 ├── CHANGES.md ├── LICENSE ├── README.md ├── appveyor.yml ├── assets ├── Serilog.snk ├── Serilog.svg └── serilog-enricher-nuget.png ├── serilog-enrichers-process.sln ├── src └── Serilog.Enrichers.Process │ ├── Enrichers │ ├── ProcessIdEnricher.cs │ └── ProcessNameEnricher.cs │ ├── ProcessLoggerConfigurationExtensions.cs │ └── Serilog.Enrichers.Process.csproj └── test └── Serilog.Enrichers.Process.Tests ├── Enrichers ├── ProcessIdEnricherTests.cs └── ProcessNameEnricherTests.cs ├── Serilog.Enrichers.Process.Tests.csproj └── Support ├── DelegatingSink.cs └── Extensions.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/Build.ps1 -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | - Moved to new project 3 | - DotNet Core support -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/Serilog.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/assets/Serilog.snk -------------------------------------------------------------------------------- /assets/Serilog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/assets/Serilog.svg -------------------------------------------------------------------------------- /assets/serilog-enricher-nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/assets/serilog-enricher-nuget.png -------------------------------------------------------------------------------- /serilog-enrichers-process.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/serilog-enrichers-process.sln -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Process/Enrichers/ProcessIdEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/src/Serilog.Enrichers.Process/Enrichers/ProcessIdEnricher.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Process/Enrichers/ProcessNameEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/src/Serilog.Enrichers.Process/Enrichers/ProcessNameEnricher.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Process/ProcessLoggerConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/src/Serilog.Enrichers.Process/ProcessLoggerConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Serilog.Enrichers.Process/Serilog.Enrichers.Process.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/src/Serilog.Enrichers.Process/Serilog.Enrichers.Process.csproj -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Process.Tests/Enrichers/ProcessIdEnricherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/test/Serilog.Enrichers.Process.Tests/Enrichers/ProcessIdEnricherTests.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Process.Tests/Enrichers/ProcessNameEnricherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/test/Serilog.Enrichers.Process.Tests/Enrichers/ProcessNameEnricherTests.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Process.Tests/Serilog.Enrichers.Process.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/test/Serilog.Enrichers.Process.Tests/Serilog.Enrichers.Process.Tests.csproj -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Process.Tests/Support/DelegatingSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/test/Serilog.Enrichers.Process.Tests/Support/DelegatingSink.cs -------------------------------------------------------------------------------- /test/Serilog.Enrichers.Process.Tests/Support/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog/serilog-enrichers-process/HEAD/test/Serilog.Enrichers.Process.Tests/Support/Extensions.cs --------------------------------------------------------------------------------