Don't fail build over xmldoc in samples,tests

This commit is contained in:
Joe DeCock 2025-03-05 15:40:11 -06:00
parent ae6a93c898
commit d8a0f3e748
3 changed files with 3 additions and 1 deletions

View file

@ -21,6 +21,7 @@ namespace Clients
/// Writes text to the console in a box.
/// </summary>
/// <param name="text">The text.</param>
/// <param name="color">The color of the text to write.</param>
[DebuggerStepThrough]
public static void ConsoleBox(this string text, ConsoleColor color)
{

View file

@ -7,6 +7,7 @@
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
<ImplicitUsings>true</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<!--Release builds do more work and are stricter. This allows for faster

View file

@ -10,7 +10,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- <Nullable>enable</Nullable> -->
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<NoWarn>$(NoWarn);NU1507</NoWarn>
<NoWarn>$(NoWarn);CS1591;NU1507</NoWarn>
</PropertyGroup>
<!--Release builds do more work and are stricter. This allows for faster