├── .config └── dotnet-tools.json ├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 10_bug_report.yml │ ├── 20_feature_request.yml │ ├── 30_question.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actionlint-matcher.json ├── dependabot.yml ├── release.yml ├── renovate.json ├── workflows │ ├── build.yml │ ├── bump-version.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── lint.yml │ ├── moderation.yml │ ├── ossf-scorecard.yml │ ├── publish.yml │ └── release.yml └── zizmor.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── .vsconfig ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Directory.Packages.props ├── LICENSE ├── Logging.XUnit.ruleset ├── Logging.XUnit.slnx ├── NuGet.config ├── README.md ├── SECURITY.md ├── docs └── images │ ├── output-terminal.png │ ├── output-vs.png │ └── output-vscode.png ├── global.json ├── package-icon.png ├── package-readme.md ├── src ├── Logging.XUnit.v3 │ ├── MartinCostello.Logging.XUnit.v3.csproj │ └── PublicAPI │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ ├── net10.0 │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ │ └── net8.0 │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt ├── Logging.XUnit │ ├── MartinCostello.Logging.XUnit.csproj │ └── PublicAPI │ │ ├── PublicAPI.Shipped.txt │ │ ├── PublicAPI.Unshipped.txt │ │ ├── net10.0 │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ │ └── net8.0 │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt └── Shared │ ├── AmbientTestOutputHelperAccessor.cs │ ├── ArgumentNullExceptionExtensions.cs │ ├── CallerArgumentExpressionAttribute.cs │ ├── IMessageSinkAccessor.cs │ ├── IMessageSinkExtensions.cs │ ├── ITestOutputHelperAccessor.cs │ ├── ITestOutputHelperExtensions.cs │ ├── MessageSinkAccessor.cs │ ├── StringSyntaxAttribute.cs │ ├── TestOutputHelperAccessor.cs │ ├── XUnitLogScope.cs │ ├── XUnitLogger.IMessageSink.cs │ ├── XUnitLogger.ITestOutputHelper.cs │ ├── XUnitLogger.cs │ ├── XUnitLoggerExtensions.IMessageSink.cs │ ├── XUnitLoggerExtensions.ITestOutputHelper.cs │ ├── XUnitLoggerOptions.cs │ ├── XUnitLoggerProvider.IMessageSink.cs │ ├── XUnitLoggerProvider.ITestOutputHelper.cs │ └── XUnitLoggerProvider.cs ├── stylecop.json └── tests ├── Logging.XUnit.Tests └── MartinCostello.Logging.XUnit.Tests.csproj ├── Logging.XUnit.v3.Tests └── MartinCostello.Logging.XUnit.v3.Tests.csproj ├── SampleApp ├── Program.cs ├── Properties │ └── launchSettings.json ├── SampleApp.csproj ├── appsettings.Development.json └── appsettings.json └── Shared ├── AssemblyTests.cs ├── Constructor.cs ├── Examples.cs ├── Integration ├── DatabaseFixture.cs ├── DatabaseTests.cs ├── HttpApplicationTests.cs ├── HttpServerCollection.cs ├── HttpServerFixture.cs └── PrintableDiagnosticMessage.cs ├── IntegrationTests.cs ├── XUnitLoggerExtensionsTests.cs ├── XUnitLoggerProviderTests.cs ├── XUnitLoggerTests.cs └── xunit.runner.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @martincostello 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/10_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/ISSUE_TEMPLATE/10_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/20_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/ISSUE_TEMPLATE/20_feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/30_question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/ISSUE_TEMPLATE/30_question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actionlint-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/actionlint-matcher.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/bump-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/bump-version.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/moderation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/moderation.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.github/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/.vsconfig -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /Logging.XUnit.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/Logging.XUnit.ruleset -------------------------------------------------------------------------------- /Logging.XUnit.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/Logging.XUnit.slnx -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/images/output-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/docs/images/output-terminal.png -------------------------------------------------------------------------------- /docs/images/output-vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/docs/images/output-vs.png -------------------------------------------------------------------------------- /docs/images/output-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/docs/images/output-vscode.png -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/global.json -------------------------------------------------------------------------------- /package-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/package-icon.png -------------------------------------------------------------------------------- /package-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/package-readme.md -------------------------------------------------------------------------------- /src/Logging.XUnit.v3/MartinCostello.Logging.XUnit.v3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit.v3/MartinCostello.Logging.XUnit.v3.csproj -------------------------------------------------------------------------------- /src/Logging.XUnit.v3/PublicAPI/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit.v3/PublicAPI/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit.v3/PublicAPI/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit.v3/PublicAPI/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit.v3/PublicAPI/net10.0/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit.v3/PublicAPI/net10.0/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit.v3/PublicAPI/net10.0/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit.v3/PublicAPI/net10.0/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit.v3/PublicAPI/net8.0/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit.v3/PublicAPI/net8.0/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit.v3/PublicAPI/net8.0/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit.v3/PublicAPI/net8.0/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit/MartinCostello.Logging.XUnit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit/MartinCostello.Logging.XUnit.csproj -------------------------------------------------------------------------------- /src/Logging.XUnit/PublicAPI/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit/PublicAPI/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit/PublicAPI/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit/PublicAPI/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit/PublicAPI/net10.0/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit/PublicAPI/net10.0/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit/PublicAPI/net10.0/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit/PublicAPI/net10.0/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit/PublicAPI/net8.0/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit/PublicAPI/net8.0/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/Logging.XUnit/PublicAPI/net8.0/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Logging.XUnit/PublicAPI/net8.0/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/Shared/AmbientTestOutputHelperAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/AmbientTestOutputHelperAccessor.cs -------------------------------------------------------------------------------- /src/Shared/ArgumentNullExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/ArgumentNullExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Shared/CallerArgumentExpressionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/CallerArgumentExpressionAttribute.cs -------------------------------------------------------------------------------- /src/Shared/IMessageSinkAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/IMessageSinkAccessor.cs -------------------------------------------------------------------------------- /src/Shared/IMessageSinkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/IMessageSinkExtensions.cs -------------------------------------------------------------------------------- /src/Shared/ITestOutputHelperAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/ITestOutputHelperAccessor.cs -------------------------------------------------------------------------------- /src/Shared/ITestOutputHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/ITestOutputHelperExtensions.cs -------------------------------------------------------------------------------- /src/Shared/MessageSinkAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/MessageSinkAccessor.cs -------------------------------------------------------------------------------- /src/Shared/StringSyntaxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/StringSyntaxAttribute.cs -------------------------------------------------------------------------------- /src/Shared/TestOutputHelperAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/TestOutputHelperAccessor.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLogScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLogScope.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLogger.IMessageSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLogger.IMessageSink.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLogger.ITestOutputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLogger.ITestOutputHelper.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLogger.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLoggerExtensions.IMessageSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLoggerExtensions.IMessageSink.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLoggerExtensions.ITestOutputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLoggerExtensions.ITestOutputHelper.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLoggerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLoggerOptions.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLoggerProvider.IMessageSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLoggerProvider.IMessageSink.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLoggerProvider.ITestOutputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLoggerProvider.ITestOutputHelper.cs -------------------------------------------------------------------------------- /src/Shared/XUnitLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/src/Shared/XUnitLoggerProvider.cs -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/stylecop.json -------------------------------------------------------------------------------- /tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj -------------------------------------------------------------------------------- /tests/Logging.XUnit.v3.Tests/MartinCostello.Logging.XUnit.v3.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Logging.XUnit.v3.Tests/MartinCostello.Logging.XUnit.v3.Tests.csproj -------------------------------------------------------------------------------- /tests/SampleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/SampleApp/Program.cs -------------------------------------------------------------------------------- /tests/SampleApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/SampleApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/SampleApp/SampleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/SampleApp/SampleApp.csproj -------------------------------------------------------------------------------- /tests/SampleApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/SampleApp/appsettings.Development.json -------------------------------------------------------------------------------- /tests/SampleApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/SampleApp/appsettings.json -------------------------------------------------------------------------------- /tests/Shared/AssemblyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/AssemblyTests.cs -------------------------------------------------------------------------------- /tests/Shared/Constructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/Constructor.cs -------------------------------------------------------------------------------- /tests/Shared/Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/Examples.cs -------------------------------------------------------------------------------- /tests/Shared/Integration/DatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/Integration/DatabaseFixture.cs -------------------------------------------------------------------------------- /tests/Shared/Integration/DatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/Integration/DatabaseTests.cs -------------------------------------------------------------------------------- /tests/Shared/Integration/HttpApplicationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/Integration/HttpApplicationTests.cs -------------------------------------------------------------------------------- /tests/Shared/Integration/HttpServerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/Integration/HttpServerCollection.cs -------------------------------------------------------------------------------- /tests/Shared/Integration/HttpServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/Integration/HttpServerFixture.cs -------------------------------------------------------------------------------- /tests/Shared/Integration/PrintableDiagnosticMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/Integration/PrintableDiagnosticMessage.cs -------------------------------------------------------------------------------- /tests/Shared/IntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/IntegrationTests.cs -------------------------------------------------------------------------------- /tests/Shared/XUnitLoggerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/XUnitLoggerExtensionsTests.cs -------------------------------------------------------------------------------- /tests/Shared/XUnitLoggerProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/XUnitLoggerProviderTests.cs -------------------------------------------------------------------------------- /tests/Shared/XUnitLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/XUnitLoggerTests.cs -------------------------------------------------------------------------------- /tests/Shared/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/xunit-logging/HEAD/tests/Shared/xunit.runner.json --------------------------------------------------------------------------------