DEP08SIASM - v2.43.0 - Running but

with nuget_System.Text.Json v5.0.1
This commit is contained in:
2022-06-28 11:57:49 -07:00
parent c7884587bb
commit 1a152fafe0
75 changed files with 3067 additions and 2859 deletions

View File

@ -1,7 +1,7 @@
using Microsoft.Extensions.Logging;
using System;
namespace Shared;
namespace Adaptation._Tests.Shared.Log;
public class ConsoleLogger : ILogger
{

View File

@ -2,7 +2,7 @@
using System;
using System.Collections.Concurrent;
namespace Shared;
namespace Adaptation._Tests.Shared.Log;
public class ConsoleProvider : ILoggerProvider
{

View File

@ -1,7 +1,7 @@
using Microsoft.Extensions.Logging;
using System;
namespace Shared;
namespace Adaptation._Tests.Shared.Log;
public class DebugLogger : ILogger
{

View File

@ -2,7 +2,7 @@
using System;
using System.Collections.Concurrent;
namespace Shared;
namespace Adaptation._Tests.Shared.Log;
public class DebugProvider : ILoggerProvider
{

View File

@ -1,7 +1,7 @@
using Microsoft.Extensions.Logging;
using System;
namespace Shared;
namespace Adaptation._Tests.Shared.Log;
public class FeedbackLogger : ILogger
{

View File

@ -2,7 +2,7 @@
using System;
using System.Collections.Concurrent;
namespace Shared;
namespace Adaptation._Tests.Shared.Log;
public class FeedbackProvider : ILoggerProvider
{

View File

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace Shared;
namespace Adaptation._Tests.Shared.Log;
public interface IFeedback
{

View File

@ -3,7 +3,7 @@ using System;
using System.Collections.Generic;
using System.IO;
namespace Shared;
namespace Adaptation._Tests.Shared.Log;
public class Log
{
@ -116,7 +116,7 @@ public class Log
if (i == 1)
result = directory;
else
result = string.Concat("D", directory.Substring(1));
result = string.Concat("D", directory[1..]);
try
{
if (!Directory.Exists(result))