Skip to content

Commit

Permalink
CapturingLogger.Parameters can be null
Browse files Browse the repository at this point in the history
Reaction to dotnet/msbuild#9876.
  • Loading branch information
rainersigwald committed May 1, 2024
1 parent c38027f commit 6a6ea80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Microsoft.NET.Build.Containers.IntegrationTests;
public class CapturingLogger : ILogger
{
public LoggerVerbosity Verbosity { get => LoggerVerbosity.Diagnostic; set { } }
public string Parameters { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string? Parameters { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }

private List<BuildMessageEventArgs> _messages = new();
public IReadOnlyList<BuildMessageEventArgs> Messages { get { return _messages; } }
Expand Down

0 comments on commit 6a6ea80

Please sign in to comment.