File tree Expand file tree Collapse file tree 6 files changed +9
-14
lines changed
BlueDotBrigade.Weevil.Cli
BlueDotBrigade.Weevil.Common/IO Expand file tree Collapse file tree 6 files changed +9
-14
lines changed Original file line number Diff line number Diff line change 55 using System . Linq ;
66 using System . Text ;
77 using System . Threading . Tasks ;
8+ using BlueDotBrigade . Weevil . IO ;
89
910 public static class OutputWriterContext
1011 {
Original file line number Diff line number Diff line change 1010 using Diagnostics ;
1111 using Filter ;
1212 using IO ;
13+ using BlueDotBrigade . Weevil . IO ;
1314
1415 // ReSharper disable once ClassNeverInstantiated.Global
1516 internal class Program
Original file line number Diff line number Diff line change 1- namespace BlueDotBrigade . Weevil . Cli . IO
1+ namespace BlueDotBrigade . Weevil . IO
22{
3- using System . Diagnostics ;
43 using System ;
54
6- internal sealed class HtmlFormatter : IOutputFormatter
5+ public sealed class HtmlFormatter : IOutputFormatter
76 {
87 private int _numberedItemCounter = 1 ;
98
Original file line number Diff line number Diff line change 1- namespace BlueDotBrigade . Weevil . Cli . IO
1+ namespace BlueDotBrigade . Weevil . IO
22{
3- using System . Diagnostics ;
43 using System ;
54
65 public interface IOutputFormatter
@@ -13,4 +12,3 @@ public interface IOutputFormatter
1312 void ResetNumbering ( ) ;
1413 }
1514}
16-
Original file line number Diff line number Diff line change 1- namespace BlueDotBrigade . Weevil . Cli . IO
1+ namespace BlueDotBrigade . Weevil . IO
22{
3- using System . Diagnostics ;
43 using System ;
54
6- internal sealed class MarkdownFormatter : IOutputFormatter
5+ public sealed class MarkdownFormatter : IOutputFormatter
76 {
87 private int _numberedItemCounter = 1 ;
98
@@ -15,4 +14,3 @@ internal sealed class MarkdownFormatter : IOutputFormatter
1514 public void ResetNumbering ( ) => _numberedItemCounter = 1 ;
1615 }
1716}
18-
Original file line number Diff line number Diff line change 1- namespace BlueDotBrigade . Weevil . Cli . IO
1+ namespace BlueDotBrigade . Weevil . IO
22{
3- using System . Diagnostics ;
43 using System ;
54
6- internal sealed class PlainTextFormatter : IOutputFormatter
5+ public sealed class PlainTextFormatter : IOutputFormatter
76 {
87 private int _numberedItemCounter = 1 ;
98
@@ -15,4 +14,3 @@ internal sealed class PlainTextFormatter : IOutputFormatter
1514 public void ResetNumbering ( ) => _numberedItemCounter = 1 ;
1615 }
1716}
18-
You can’t perform that action at this time.
0 commit comments