mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
Don't fail build over xmldoc in samples,tests
This commit is contained in:
parent
ae6a93c898
commit
d8a0f3e748
3 changed files with 3 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue