Skip to content

Commit

Permalink
Merge pull request #102 from microsoft/users/salvmd/publickeyfix
Browse files Browse the repository at this point in the history
Removing InternalsVisibleTo
  • Loading branch information
Salvador Melendez Delgado authored Jun 7, 2019
2 parents 8de0ce1 + 378fede commit 0822448
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions CredentialProvider.Microsoft/InternalsVisibleTo.cs

This file was deleted.

6 changes: 3 additions & 3 deletions CredentialProvider.Microsoft/Logging/ConsoleLoggers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ namespace NuGetCredentialProvider.Logging
/// <summary>
/// Logs messages to standard output, with log level included
/// </summary>
internal class StandardOutputLogger : HumanFriendlyTextWriterLogger
public class StandardOutputLogger : HumanFriendlyTextWriterLogger
{
public StandardOutputLogger() : base(Console.Out) { }
}

/// <summary>
/// Logs messages to standard error, with log level included
/// </summary>
internal class StandardErrorLogger : HumanFriendlyTextWriterLogger
public class StandardErrorLogger : HumanFriendlyTextWriterLogger
{
public StandardErrorLogger() : base(Console.Error) { }
}

/// <summary>
/// Emits a log message in a human-readable format to a TextWriter, including the log level
/// </summary>
internal class HumanFriendlyTextWriterLogger : LoggerBase
public class HumanFriendlyTextWriterLogger : LoggerBase
{
private readonly TextWriter writer;

Expand Down
2 changes: 1 addition & 1 deletion CredentialProvider.Microsoft/Logging/LoggerBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace NuGetCredentialProvider.Logging
{
internal abstract class LoggerBase : ILogger
public abstract class LoggerBase : ILogger
{
private LogLevel minLogLevel = LogLevel.Debug;
private bool allowLogWrites = false;
Expand Down

0 comments on commit 0822448

Please sign in to comment.