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 |
Beta Was this translation helpful? Give feedback.
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: Latex You could then convert the Latex file to a PDF using MiKTex. |
Beta Was this translation helpful? Give feedback.
-
I tried doing that, but apparently it doesn't use the same theme as the type |
Beta Was this translation helpful? Give feedback.
The
HtmlInline_AzurePipelines_Dark
format 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.