From e3699b1dcca91b109ac3f67622da587cb3bac88c Mon Sep 17 00:00:00 2001 From: Rainer Sigwald Date: Wed, 1 May 2024 10:51:00 -0500 Subject: [PATCH] CapturingLogger.Parameters can be null Reaction to dotnet/msbuild#9876. --- .../CapturingLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs b/test/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs index e2ce969708e2..df2bd2d60f7e 100644 --- a/test/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs +++ b/test/Microsoft.NET.Build.Containers.IntegrationTests/CapturingLogger.cs @@ -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 _messages = new(); public IReadOnlyList Messages { get { return _messages; } }