From d8a0f3e748dda8fd36ae9d57a602cd2dcca31b71 Mon Sep 17 00:00:00 2001 From: Joe DeCock Date: Wed, 5 Mar 2025 15:40:11 -0600 Subject: [PATCH] Don't fail build over xmldoc in samples,tests --- identity-server/clients/src/Constants/ConsoleExtensions.cs | 1 + samples.props | 1 + test.props | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/identity-server/clients/src/Constants/ConsoleExtensions.cs b/identity-server/clients/src/Constants/ConsoleExtensions.cs index 86c9004b4..e731cd19f 100644 --- a/identity-server/clients/src/Constants/ConsoleExtensions.cs +++ b/identity-server/clients/src/Constants/ConsoleExtensions.cs @@ -21,6 +21,7 @@ namespace Clients /// Writes text to the console in a box. /// /// The text. + /// The color of the text to write. [DebuggerStepThrough] public static void ConsoleBox(this string text, ConsoleColor color) { diff --git a/samples.props b/samples.props index d898b0b32..f8fc1d9c4 100644 --- a/samples.props +++ b/samples.props @@ -7,6 +7,7 @@ false true true + $(NoWarn);CS1591 true - $(NoWarn);NU1507 + $(NoWarn);CS1591;NU1507