my advent of code solutions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

silence another resharper warning

+3
+3
AOC.Common/Day.cs
··· 1 1 using CommandLine; 2 + using System.Diagnostics.CodeAnalysis; 2 3 3 4 namespace AOC.Common; 4 5 ··· 86 87 Console.WriteLine($"Part 2: {part2,-45} {_stopwatch.ScaleMilliseconds()}ms elapsed"); 87 88 } 88 89 90 + // ReSharper disable once ClassNeverInstantiated.Local 91 + // ReSharper disable UnusedAutoPropertyAccessor.Local 89 92 private class Options 90 93 { 91 94 [Option('t', "test", Required = false, Default = false, HelpText = "Use test input for the given day")]