Skip to content

Commit

Permalink
Fixed xmldoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory Primrose committed Nov 21, 2023
1 parent 564b4e5 commit 643aebd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ jobs:
fileVersion: ${{ steps.gitversion.outputs.MajorMinorPatch }}
informationalVersion: ${{ steps.gitversion.outputs.InformationalVersion }}

- name: Setup dotnet v3.1
uses: actions/[email protected]
with:
dotnet-version: '3.1.x' # SDK Version to use.

- name: Setup dotnet v6.0
uses: actions/[email protected]
with:
Expand Down
15 changes: 2 additions & 13 deletions Divergic.Logging.Xunit/TestOutputHelperExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace Xunit.Abstractions
// ReSharper disable once CheckNamespace
namespace Xunit.Abstractions
{
using System;
using System.Runtime.CompilerServices;
Expand Down Expand Up @@ -132,10 +133,6 @@ public static ICacheLogger<T> BuildLoggerFor<T>(this ITestOutputHelper output, L
/// Builds a logger factory from the specified test output helper.
/// </summary>
/// <param name="output">The test output helper.</param>
/// <param name="memberName">
/// The member to create the logger for. This is automatically populated using <see cref="CallerMemberNameAttribute" />
/// .
/// </param>
/// <returns>The logger factory.</returns>
/// <exception cref="ArgumentNullException">The <paramref name="output" /> is <c>null</c>.</exception>
public static ILoggerFactory BuildLoggerFactory(
Expand All @@ -149,10 +146,6 @@ public static ILoggerFactory BuildLoggerFactory(
/// </summary>
/// <param name="output">The test output helper.</param>
/// <param name="logLevel">The minimum log level to output.</param>
/// <param name="memberName">
/// The member to create the logger for. This is automatically populated using <see cref="CallerMemberNameAttribute" />
/// .
/// </param>
/// <returns>The logger factory.</returns>
/// <exception cref="ArgumentNullException">The <paramref name="output" /> is <c>null</c>.</exception>
public static ILoggerFactory BuildLoggerFactory(
Expand All @@ -172,10 +165,6 @@ public static ILoggerFactory BuildLoggerFactory(
/// </summary>
/// <param name="output">The test output helper.</param>
/// <param name="config">Optional logging configuration.</param>
/// <param name="memberName">
/// The member to create the logger for. This is automatically populated using <see cref="CallerMemberNameAttribute" />
/// .
/// </param>
/// <returns>The logger factory.</returns>
/// <exception cref="ArgumentNullException">The <paramref name="output" /> is <c>null</c>.</exception>
public static ILoggerFactory BuildLoggerFactory(
Expand Down

0 comments on commit 643aebd

Please sign in to comment.