Skip to content

Commit 9da4497

Browse files
authored
Make MarkdownExporter ctor and Dialect protected (#2407)
Make MarkdownExporter ctor and Dialect protected
1 parent d058c7b commit 9da4497

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BenchmarkDotNet/Exporters/MarkdownExporter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public enum MarkdownHighlightStrategy
2222
protected override string FileExtension => "md";
2323
protected override string FileNameSuffix => $"-{Dialect.ToLower()}";
2424

25-
private string Dialect { get; set; }
25+
protected string Dialect { get; set; }
2626

2727
public static readonly IExporter Default = new MarkdownExporter
2828
{
@@ -86,7 +86,7 @@ public enum MarkdownHighlightStrategy
8686
[PublicAPI] protected string BoldMarkupFormat = "**{0}**";
8787
[PublicAPI] protected bool EscapeHtml;
8888

89-
private MarkdownExporter() { }
89+
protected MarkdownExporter() { }
9090

9191
public override void ExportToLog(Summary summary, ILogger logger)
9292
{

0 commit comments

Comments
 (0)