Skip to content
Prev Previous commit
Next Next commit
Add extra new lines
Try and fix rendering by adding more vertical spacing around the details tags.
  • Loading branch information
martincostello committed May 1, 2024
commit 25ae3b6a2c1bcf93f6feeb20f1a146481c87fc7d
2 changes: 2 additions & 0 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@
<ItemGroup>
<_ReportGeneratorLines Include="&lt;details&gt;&lt;summary&gt;:chart_with_upwards_trend: &lt;b&gt;$(AssemblyName) Code Coverage report&lt;/b&gt;&lt;/summary&gt;" />
<_ReportGeneratorLines Include="$([System.Environment]::NewLine)" />
<_ReportGeneratorLines Include="$([System.Environment]::NewLine)" />
</ItemGroup>
<ReadLinesFromFile File="$([System.IO.Path]::Combine($(ReportGeneratorTargetDirectory), 'SummaryGithub.md'))" >
<Output TaskParameter="Lines" ItemName="_CoverageGitHubSummary"/>
</ReadLinesFromFile>
<ItemGroup>
<_ReportGeneratorLines Include="@(_CoverageGitHubSummary)" />
<_ReportGeneratorLines Include="$([System.Environment]::NewLine)" />
<_ReportGeneratorLines Include="$([System.Environment]::NewLine)" />
<_ReportGeneratorLines Include="&lt;/details&gt;" />
</ItemGroup>
<WriteLinesToFile Condition=" '$(ReportGeneratorOutputMarkdown)' == 'true' " ContinueOnError="WarnAndContinue" File="$(GITHUB_STEP_SUMMARY)" Lines="@(_ReportGeneratorLines)" />
Expand Down