diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 002f811..801ae20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,11 +43,6 @@ jobs: fileVersion: ${{ steps.gitversion.outputs.MajorMinorPatch }} informationalVersion: ${{ steps.gitversion.outputs.InformationalVersion }} - - name: Setup dotnet v3.1 - uses: actions/setup-dotnet@v2.1.0 - with: - dotnet-version: '3.1.x' # SDK Version to use. - - name: Setup dotnet v6.0 uses: actions/setup-dotnet@v2.1.0 with: diff --git a/Divergic.Logging.Xunit/TestOutputHelperExtensions.cs b/Divergic.Logging.Xunit/TestOutputHelperExtensions.cs index 89ff7f3..f437a08 100644 --- a/Divergic.Logging.Xunit/TestOutputHelperExtensions.cs +++ b/Divergic.Logging.Xunit/TestOutputHelperExtensions.cs @@ -1,4 +1,5 @@ -namespace Xunit.Abstractions +// ReSharper disable once CheckNamespace +namespace Xunit.Abstractions { using System; using System.Runtime.CompilerServices; @@ -132,10 +133,6 @@ public static ICacheLogger BuildLoggerFor(this ITestOutputHelper output, L /// Builds a logger factory from the specified test output helper. /// /// The test output helper. - /// - /// The member to create the logger for. This is automatically populated using - /// . - /// /// The logger factory. /// The is null. public static ILoggerFactory BuildLoggerFactory( @@ -149,10 +146,6 @@ public static ILoggerFactory BuildLoggerFactory( /// /// The test output helper. /// The minimum log level to output. - /// - /// The member to create the logger for. This is automatically populated using - /// . - /// /// The logger factory. /// The is null. public static ILoggerFactory BuildLoggerFactory( @@ -172,10 +165,6 @@ public static ILoggerFactory BuildLoggerFactory( /// /// The test output helper. /// Optional logging configuration. - /// - /// The member to create the logger for. This is automatically populated using - /// . - /// /// The logger factory. /// The is null. public static ILoggerFactory BuildLoggerFactory(