1
0

Added FileLogger to collection, some CI changes

- Building within one container
- Updated UnitTest references
- Extending DebugLocal
This commit is contained in:
2023-03-18 12:36:21 +01:00
parent 9c26ced721
commit 9d7becbdaf
11 changed files with 766 additions and 130 deletions

View File

@@ -0,0 +1,25 @@
using System;
namespace AMWD.Common.Logging
{
/// <summary>
/// An empty scope without any logic.
/// </summary>
[System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
internal class NullScope : IDisposable
{
/// <summary>
/// The <see cref="NullScope"/> instance to use.
/// </summary>
public static NullScope Instance { get; } = new NullScope();
private NullScope()
{
}
/// <inheritdoc />
public void Dispose()
{
}
}
}