ben
/
aoc
1
0
Fork 0

silence another resharper warning
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ben Harris 2024-05-09 15:06:05 -04:00
parent fb30504c2c
commit 92dd5ba7a0
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
using CommandLine;
using System.Diagnostics.CodeAnalysis;
namespace AOC.Common;
@ -86,6 +87,8 @@ public abstract class Day(int year, int day, string puzzleName)
Console.WriteLine($"Part 2: {part2,-45} {_stopwatch.ScaleMilliseconds()}ms elapsed");
}
// ReSharper disable once ClassNeverInstantiated.Local
// ReSharper disable UnusedAutoPropertyAccessor.Local
private class Options
{
[Option('t', "test", Required = false, Default = false, HelpText = "Use test input for the given day")]