Skip to content

Commit

Permalink
Update BuildLogAnalyzer.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
erichiller authored Jan 30, 2024
1 parent 192e99d commit 24541f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PlotGitHubAction/BuildLogAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ _projWarningsHs[ proj ].Add(

foreach ( var (proj, warnLogEntries) in _projWarningsHs.OrderBy( kv => kv.Key.ProjectName ) ) {
warnings.AppendLine( $"""
**{proj.ProjectName}** <a id="{proj.MarkdownId}"\>
**{proj.ProjectName}** <a id="{proj.MarkdownId}"></a>
""".PadRight( 50 ) + " |||" );
foreach ( var entry in warnLogEntries.OrderBy( t => t.SortableLocationString ) ) {
warnings.AppendLine(
Expand Down Expand Up @@ -227,4 +227,4 @@ public XYPlotConfig<DateTime>[] GetPlottable( ) => new[] {
Data: Array.Empty<XYData<DateTime>>()
), PlotDataSelection.Total )
};
}
}

0 comments on commit 24541f7

Please sign in to comment.