Skip to content

Commit 378fede

Browse files
author
Salvador Melendez-Delgado
committed
Removing InternalsVisibleTo
1 parent 9b24439 commit 378fede

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

CredentialProvider.Microsoft/InternalsVisibleTo.cs

Lines changed: 0 additions & 3 deletions
This file was deleted.

CredentialProvider.Microsoft/Logging/ConsoleLoggers.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ namespace NuGetCredentialProvider.Logging
1111
/// <summary>
1212
/// Logs messages to standard output, with log level included
1313
/// </summary>
14-
internal class StandardOutputLogger : HumanFriendlyTextWriterLogger
14+
public class StandardOutputLogger : HumanFriendlyTextWriterLogger
1515
{
1616
public StandardOutputLogger() : base(Console.Out) { }
1717
}
1818

1919
/// <summary>
2020
/// Logs messages to standard error, with log level included
2121
/// </summary>
22-
internal class StandardErrorLogger : HumanFriendlyTextWriterLogger
22+
public class StandardErrorLogger : HumanFriendlyTextWriterLogger
2323
{
2424
public StandardErrorLogger() : base(Console.Error) { }
2525
}
2626

2727
/// <summary>
2828
/// Emits a log message in a human-readable format to a TextWriter, including the log level
2929
/// </summary>
30-
internal class HumanFriendlyTextWriterLogger : LoggerBase
30+
public class HumanFriendlyTextWriterLogger : LoggerBase
3131
{
3232
private readonly TextWriter writer;
3333

CredentialProvider.Microsoft/Logging/LoggerBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace NuGetCredentialProvider.Logging
1111
{
12-
internal abstract class LoggerBase : ILogger
12+
public abstract class LoggerBase : ILogger
1313
{
1414
private LogLevel minLogLevel = LogLevel.Debug;
1515
private bool allowLogWrites = false;

0 commit comments

Comments
 (0)