Generate PDF #618
Generate PDF
#618
|
I just wanted to task if there was a way to generate a PDF from the information produced using the ReportGenerator Azure Pipeline extension. I'm using the following configuration: - task: reportgenerator@5
displayName: 'Generate Latex code coverage reporte'
inputs:
reports: '$(Agent.TempDirectory)/**/coverage.cobertura.xml'
targetdir: '$(Agent.TempDirectory)/Reports'
reporttypes: HtmlInline_AzurePipelines_Dark |
Answered by
danielpalme
Aug 9, 2023
Replies: 2 comments 2 replies
|
The following task produces a Latex file: - task: reportgenerator@5
displayName: 'Generate Latex code coverage reporte'
inputs:
reports: '$(Agent.TempDirectory)/**/coverage.cobertura.xml'
targetdir: '$(Agent.TempDirectory)/Reports'
reporttypes: LatexYou could then convert the Latex file to a PDF using MiKTex. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

The
HtmlInline_AzurePipelines_Darkformat is a HTML based report.It has nothing to do with the Latex format.
There is no dark theme for the Latex report, since IMHO a PDF should be printable.