├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── extensions.json └── settings.json ├── Directory.Build.props ├── LICENSE ├── MELT.CI.slnf ├── MELT.sln ├── README.md ├── docs └── README.md ├── keypair.snk ├── logo.png ├── logo_large.png ├── pack.ps1 ├── samples ├── 2.1 │ ├── SampleWebApplication2_1.IntegrationTests │ │ ├── LoggingTest.cs │ │ ├── LoggingTestWithInjectedFactory.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── SampleWebApplication2_1.IntegrationTests.csproj │ └── SampleWebApplication2_1 │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── SampleWebApplication2_1.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── Directory.Build.props ├── current │ ├── NLog │ │ ├── SampleWebApplicationNLog.IntegrationTests │ │ │ ├── CustomWebApplicationFactory.cs │ │ │ ├── LoggingTest.cs │ │ │ ├── LoggingTestAlternate.cs │ │ │ ├── LoggingTestWithInjectedFactory.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ └── SampleWebApplicationNLog.IntegrationTests.csproj │ │ └── SampleWebApplicationNLog │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SampleWebApplicationNLog.csproj │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── nlog.config │ ├── SampleLibrary.Tests │ │ ├── MoreTest.cs │ │ ├── SampleLibrary.Tests.csproj │ │ └── SampleTest.cs │ ├── SampleLibrary │ │ ├── More.cs │ │ ├── Sample.cs │ │ └── SampleLibrary.csproj │ ├── SampleWebApplication.IntegrationTests │ │ ├── CustomWebApplicationFactory.cs │ │ ├── LoggingTest.cs │ │ ├── LoggingTestAlternate.cs │ │ ├── LoggingTestWithInjectedFactory.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── SampleWebApplication.IntegrationTests.csproj │ ├── SampleWebApplication │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SampleWebApplication.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── serilog │ │ ├── SampleWebApplicationSerilog.IntegrationTests │ │ ├── LoggingTest.cs │ │ ├── LoggingTestWithInjectedFactory.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── SampleWebApplicationSerilog.IntegrationTests.csproj │ │ ├── SampleWebApplicationSerilog │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SampleWebApplicationSerilog.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── SampleWebApplicationSerilogAlternate.IntegrationTests │ │ ├── CustomWebApplicationFactory.cs │ │ ├── LoggingTest.cs │ │ ├── LoggingTestWithInjectedFactory.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── SampleWebApplicationSerilogAlternate.IntegrationTests.csproj │ │ └── SampleWebApplicationSerilogAlternate │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── SampleWebApplicationSerilogAlternate.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── legacy │ ├── SampleLibrary.HandRolledTests │ │ ├── SampleLibrary.HandRolledTests.csproj │ │ ├── SampleStructuredLogsTest.cs │ │ └── SampleTest.cs │ └── SampleLibrary.LegacyTests │ │ ├── MoreTest.cs │ │ ├── SampleLibrary.LegacyTests.csproj │ │ ├── SampleTest.cs │ │ └── SampleTestWithoutHelpers.cs ├── xunit-2-latest │ └── SampleLibraryX.Tests │ │ ├── MoreTest.cs │ │ ├── SampleLibraryX.Tests.csproj │ │ └── SampleTest.cs └── xunit-3 │ └── SampleLibraryX3.Tests │ ├── MoreTest.cs │ ├── SampleLibraryX3.Tests.csproj │ └── SampleTest.cs ├── src ├── Directory.Build.props ├── MELT.AspNetCore │ ├── MELT.AspNetCore.csproj │ ├── MELTWebApplicationFactoryExtensions.cs │ └── MELTWebHostBuilderExtensions.cs ├── MELT.Serilog.AspNetCore │ ├── MELT.Serilog.AspNetCore.csproj │ ├── MELTSerilogWebApplicationFactoryExtensions.cs │ └── MELTSerilogWebHostBuilderExtensions.cs ├── MELT.Serilog │ ├── ISerilogTestLoggerSink.cs │ ├── MELT.Serilog.csproj │ ├── MELTSerilogLoggingBuilderExtensions.cs │ ├── SerilogLogEntry.cs │ ├── SerilogScope.cs │ └── SerilogTestLoggerSinkAccessor.cs ├── MELT.Xunit.v3 │ ├── LoggingAssert.cs │ └── MELT.Xunit.v3.csproj ├── MELT.Xunit │ ├── LogValuesAssert.cs │ ├── LoggingAssert.cs │ └── MELT.Xunit.csproj └── MELT │ ├── BeginScopeContext.cs │ ├── Constants.cs │ ├── Helpers │ ├── BeginScope.cs │ ├── IInternalTestSink.cs │ ├── IScope.cs │ ├── ITestLoggerFactory.cs │ ├── ITestLoggerSink.cs │ ├── ITestSink.cs │ ├── LogEntry.cs │ ├── MELTBuilder.cs │ ├── MELTLoggerFactoryExtensions.cs │ ├── MELTLoggingBuilderExtensions.cs │ ├── MissingNuGetPackageException.cs │ ├── PropertiesExtensions.cs │ ├── Scope.cs │ └── TestSinkOptions.cs │ ├── ITestLoggerProvider.cs │ ├── MELT.csproj │ ├── TestLogger.cs │ ├── TestLoggerFactory.cs │ ├── TestLoggerProvider.cs │ ├── TestLoggerSinkAccessor.cs │ ├── TestSink.cs │ └── WriteContext.cs └── test ├── Directory.Build.props ├── MELT.Tests ├── MELT.Tests.csproj ├── ScopeTests.cs └── TestSinkOptionsTest.cs ├── MELT.Xunit.Tests ├── LogValuesAssertTest.cs ├── LoggingAssertTest.cs └── MELT.Xunit.Tests.csproj └── MELT.Xunit.v3.Tests ├── LoggingAssertTest.cs └── MELT.Xunit.v3.Tests.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "markdown.extension.toc.levels": "2..6" 3 | } 4 | -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/LICENSE -------------------------------------------------------------------------------- /MELT.CI.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/MELT.CI.slnf -------------------------------------------------------------------------------- /MELT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/MELT.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/docs/README.md -------------------------------------------------------------------------------- /keypair.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/keypair.snk -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/logo.png -------------------------------------------------------------------------------- /logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/logo_large.png -------------------------------------------------------------------------------- /pack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/pack.ps1 -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1.IntegrationTests/LoggingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1.IntegrationTests/LoggingTest.cs -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1.IntegrationTests/LoggingTestWithInjectedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1.IntegrationTests/LoggingTestWithInjectedFactory.cs -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1.IntegrationTests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1.IntegrationTests/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1.IntegrationTests/SampleWebApplication2_1.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1.IntegrationTests/SampleWebApplication2_1.IntegrationTests.csproj -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1/Program.cs -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1/SampleWebApplication2_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1/SampleWebApplication2_1.csproj -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1/Startup.cs -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1/appsettings.Development.json -------------------------------------------------------------------------------- /samples/2.1/SampleWebApplication2_1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/2.1/SampleWebApplication2_1/appsettings.json -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/LoggingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/LoggingTest.cs -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/LoggingTestAlternate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/LoggingTestAlternate.cs -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/LoggingTestWithInjectedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/LoggingTestWithInjectedFactory.cs -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/SampleWebApplicationNLog.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog.IntegrationTests/SampleWebApplicationNLog.IntegrationTests.csproj -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog/Program.cs -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog/SampleWebApplicationNLog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog/SampleWebApplicationNLog.csproj -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog/Startup.cs -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog/appsettings.Development.json -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog/appsettings.json -------------------------------------------------------------------------------- /samples/current/NLog/SampleWebApplicationNLog/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/NLog/SampleWebApplicationNLog/nlog.config -------------------------------------------------------------------------------- /samples/current/SampleLibrary.Tests/MoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleLibrary.Tests/MoreTest.cs -------------------------------------------------------------------------------- /samples/current/SampleLibrary.Tests/SampleLibrary.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleLibrary.Tests/SampleLibrary.Tests.csproj -------------------------------------------------------------------------------- /samples/current/SampleLibrary.Tests/SampleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleLibrary.Tests/SampleTest.cs -------------------------------------------------------------------------------- /samples/current/SampleLibrary/More.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleLibrary/More.cs -------------------------------------------------------------------------------- /samples/current/SampleLibrary/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleLibrary/Sample.cs -------------------------------------------------------------------------------- /samples/current/SampleLibrary/SampleLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleLibrary/SampleLibrary.csproj -------------------------------------------------------------------------------- /samples/current/SampleWebApplication.IntegrationTests/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication.IntegrationTests/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /samples/current/SampleWebApplication.IntegrationTests/LoggingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication.IntegrationTests/LoggingTest.cs -------------------------------------------------------------------------------- /samples/current/SampleWebApplication.IntegrationTests/LoggingTestAlternate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication.IntegrationTests/LoggingTestAlternate.cs -------------------------------------------------------------------------------- /samples/current/SampleWebApplication.IntegrationTests/LoggingTestWithInjectedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication.IntegrationTests/LoggingTestWithInjectedFactory.cs -------------------------------------------------------------------------------- /samples/current/SampleWebApplication.IntegrationTests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication.IntegrationTests/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/current/SampleWebApplication.IntegrationTests/SampleWebApplication.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication.IntegrationTests/SampleWebApplication.IntegrationTests.csproj -------------------------------------------------------------------------------- /samples/current/SampleWebApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication/Program.cs -------------------------------------------------------------------------------- /samples/current/SampleWebApplication/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/current/SampleWebApplication/SampleWebApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication/SampleWebApplication.csproj -------------------------------------------------------------------------------- /samples/current/SampleWebApplication/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication/Startup.cs -------------------------------------------------------------------------------- /samples/current/SampleWebApplication/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication/appsettings.Development.json -------------------------------------------------------------------------------- /samples/current/SampleWebApplication/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/SampleWebApplication/appsettings.json -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog.IntegrationTests/LoggingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog.IntegrationTests/LoggingTest.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog.IntegrationTests/LoggingTestWithInjectedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog.IntegrationTests/LoggingTestWithInjectedFactory.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog.IntegrationTests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog.IntegrationTests/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog.IntegrationTests/SampleWebApplicationSerilog.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog.IntegrationTests/SampleWebApplicationSerilog.IntegrationTests.csproj -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog/Program.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog/SampleWebApplicationSerilog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog/SampleWebApplicationSerilog.csproj -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog/Startup.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog/appsettings.Development.json -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilog/appsettings.json -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/LoggingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/LoggingTest.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/LoggingTestWithInjectedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/LoggingTestWithInjectedFactory.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/SampleWebApplicationSerilogAlternate.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate.IntegrationTests/SampleWebApplicationSerilogAlternate.IntegrationTests.csproj -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate/Program.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate/SampleWebApplicationSerilogAlternate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate/SampleWebApplicationSerilogAlternate.csproj -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate/Startup.cs -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/current/serilog/SampleWebApplicationSerilogAlternate/appsettings.Development.json -------------------------------------------------------------------------------- /samples/current/serilog/SampleWebApplicationSerilogAlternate/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /samples/legacy/SampleLibrary.HandRolledTests/SampleLibrary.HandRolledTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/legacy/SampleLibrary.HandRolledTests/SampleLibrary.HandRolledTests.csproj -------------------------------------------------------------------------------- /samples/legacy/SampleLibrary.HandRolledTests/SampleStructuredLogsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/legacy/SampleLibrary.HandRolledTests/SampleStructuredLogsTest.cs -------------------------------------------------------------------------------- /samples/legacy/SampleLibrary.HandRolledTests/SampleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/legacy/SampleLibrary.HandRolledTests/SampleTest.cs -------------------------------------------------------------------------------- /samples/legacy/SampleLibrary.LegacyTests/MoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/legacy/SampleLibrary.LegacyTests/MoreTest.cs -------------------------------------------------------------------------------- /samples/legacy/SampleLibrary.LegacyTests/SampleLibrary.LegacyTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/legacy/SampleLibrary.LegacyTests/SampleLibrary.LegacyTests.csproj -------------------------------------------------------------------------------- /samples/legacy/SampleLibrary.LegacyTests/SampleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/legacy/SampleLibrary.LegacyTests/SampleTest.cs -------------------------------------------------------------------------------- /samples/legacy/SampleLibrary.LegacyTests/SampleTestWithoutHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/legacy/SampleLibrary.LegacyTests/SampleTestWithoutHelpers.cs -------------------------------------------------------------------------------- /samples/xunit-2-latest/SampleLibraryX.Tests/MoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/xunit-2-latest/SampleLibraryX.Tests/MoreTest.cs -------------------------------------------------------------------------------- /samples/xunit-2-latest/SampleLibraryX.Tests/SampleLibraryX.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/xunit-2-latest/SampleLibraryX.Tests/SampleLibraryX.Tests.csproj -------------------------------------------------------------------------------- /samples/xunit-2-latest/SampleLibraryX.Tests/SampleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/xunit-2-latest/SampleLibraryX.Tests/SampleTest.cs -------------------------------------------------------------------------------- /samples/xunit-3/SampleLibraryX3.Tests/MoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/xunit-3/SampleLibraryX3.Tests/MoreTest.cs -------------------------------------------------------------------------------- /samples/xunit-3/SampleLibraryX3.Tests/SampleLibraryX3.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/xunit-3/SampleLibraryX3.Tests/SampleLibraryX3.Tests.csproj -------------------------------------------------------------------------------- /samples/xunit-3/SampleLibraryX3.Tests/SampleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/samples/xunit-3/SampleLibraryX3.Tests/SampleTest.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/MELT.AspNetCore/MELT.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.AspNetCore/MELT.AspNetCore.csproj -------------------------------------------------------------------------------- /src/MELT.AspNetCore/MELTWebApplicationFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.AspNetCore/MELTWebApplicationFactoryExtensions.cs -------------------------------------------------------------------------------- /src/MELT.AspNetCore/MELTWebHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.AspNetCore/MELTWebHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MELT.Serilog.AspNetCore/MELT.Serilog.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog.AspNetCore/MELT.Serilog.AspNetCore.csproj -------------------------------------------------------------------------------- /src/MELT.Serilog.AspNetCore/MELTSerilogWebApplicationFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog.AspNetCore/MELTSerilogWebApplicationFactoryExtensions.cs -------------------------------------------------------------------------------- /src/MELT.Serilog.AspNetCore/MELTSerilogWebHostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog.AspNetCore/MELTSerilogWebHostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MELT.Serilog/ISerilogTestLoggerSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog/ISerilogTestLoggerSink.cs -------------------------------------------------------------------------------- /src/MELT.Serilog/MELT.Serilog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog/MELT.Serilog.csproj -------------------------------------------------------------------------------- /src/MELT.Serilog/MELTSerilogLoggingBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog/MELTSerilogLoggingBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MELT.Serilog/SerilogLogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog/SerilogLogEntry.cs -------------------------------------------------------------------------------- /src/MELT.Serilog/SerilogScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog/SerilogScope.cs -------------------------------------------------------------------------------- /src/MELT.Serilog/SerilogTestLoggerSinkAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Serilog/SerilogTestLoggerSinkAccessor.cs -------------------------------------------------------------------------------- /src/MELT.Xunit.v3/LoggingAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Xunit.v3/LoggingAssert.cs -------------------------------------------------------------------------------- /src/MELT.Xunit.v3/MELT.Xunit.v3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Xunit.v3/MELT.Xunit.v3.csproj -------------------------------------------------------------------------------- /src/MELT.Xunit/LogValuesAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Xunit/LogValuesAssert.cs -------------------------------------------------------------------------------- /src/MELT.Xunit/LoggingAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Xunit/LoggingAssert.cs -------------------------------------------------------------------------------- /src/MELT.Xunit/MELT.Xunit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT.Xunit/MELT.Xunit.csproj -------------------------------------------------------------------------------- /src/MELT/BeginScopeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/BeginScopeContext.cs -------------------------------------------------------------------------------- /src/MELT/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Constants.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/BeginScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/BeginScope.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/IInternalTestSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/IInternalTestSink.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/IScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/IScope.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/ITestLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/ITestLoggerFactory.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/ITestLoggerSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/ITestLoggerSink.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/ITestSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/ITestSink.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/LogEntry.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/MELTBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/MELTBuilder.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/MELTLoggerFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/MELTLoggerFactoryExtensions.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/MELTLoggingBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/MELTLoggingBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/MissingNuGetPackageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/MissingNuGetPackageException.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/PropertiesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/PropertiesExtensions.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/Scope.cs -------------------------------------------------------------------------------- /src/MELT/Helpers/TestSinkOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/Helpers/TestSinkOptions.cs -------------------------------------------------------------------------------- /src/MELT/ITestLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/ITestLoggerProvider.cs -------------------------------------------------------------------------------- /src/MELT/MELT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/MELT.csproj -------------------------------------------------------------------------------- /src/MELT/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/TestLogger.cs -------------------------------------------------------------------------------- /src/MELT/TestLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/TestLoggerFactory.cs -------------------------------------------------------------------------------- /src/MELT/TestLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/TestLoggerProvider.cs -------------------------------------------------------------------------------- /src/MELT/TestLoggerSinkAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/TestLoggerSinkAccessor.cs -------------------------------------------------------------------------------- /src/MELT/TestSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/TestSink.cs -------------------------------------------------------------------------------- /src/MELT/WriteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/src/MELT/WriteContext.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/MELT.Tests/MELT.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/MELT.Tests/MELT.Tests.csproj -------------------------------------------------------------------------------- /test/MELT.Tests/ScopeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/MELT.Tests/ScopeTests.cs -------------------------------------------------------------------------------- /test/MELT.Tests/TestSinkOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/MELT.Tests/TestSinkOptionsTest.cs -------------------------------------------------------------------------------- /test/MELT.Xunit.Tests/LogValuesAssertTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/MELT.Xunit.Tests/LogValuesAssertTest.cs -------------------------------------------------------------------------------- /test/MELT.Xunit.Tests/LoggingAssertTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/MELT.Xunit.Tests/LoggingAssertTest.cs -------------------------------------------------------------------------------- /test/MELT.Xunit.Tests/MELT.Xunit.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/MELT.Xunit.Tests/MELT.Xunit.Tests.csproj -------------------------------------------------------------------------------- /test/MELT.Xunit.v3.Tests/LoggingAssertTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/MELT.Xunit.v3.Tests/LoggingAssertTest.cs -------------------------------------------------------------------------------- /test/MELT.Xunit.v3.Tests/MELT.Xunit.v3.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alefranz/MELT/HEAD/test/MELT.Xunit.v3.Tests/MELT.Xunit.v3.Tests.csproj --------------------------------------------------------------------------------