don't warn about missing xml comments
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Lynne Megido 2020-09-27 13:08:55 +10:00
parent 6aa366c714
commit 9a1272c085
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90
2 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,7 @@ namespace BunyMuny {
}
foreach (var statement in statements.
Where(s => s.Category != null).
// Where(s => s.Category != null).
OrderBy(s => s.Date)) {
Console.WriteLine(statement);
}

View File

@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>