I am currently creating a tool to convert TRX files using LiquidTestReports.Core.
Specifically, it is an extension that converts TRX files generated by Microsoft.Testing.Extensions.TrxReport in-process.
I would like to use the ReportGenerator class for this purpose, but this class is currently marked as internal.
For this reason, I am currently creating instances of ReportGenerator using reflection.
https://github.com/kurtmkurtm/LiquidTestReports/blob/1f39c20cec7aa06f50f88843ebe99f58f7ead3c5/src/LiquidTestReports.Core/ReportGenerator.cs#L16C4-L16C35
I would like ReportGenerator to be made public so that it can be used as a public API.
I am currently creating a tool to convert TRX files using
LiquidTestReports.Core.Specifically, it is an extension that converts TRX files generated by Microsoft.Testing.Extensions.TrxReport in-process.
I would like to use the
ReportGeneratorclass for this purpose, but this class is currently marked asinternal.For this reason, I am currently creating instances of
ReportGeneratorusing reflection.https://github.com/kurtmkurtm/LiquidTestReports/blob/1f39c20cec7aa06f50f88843ebe99f58f7ead3c5/src/LiquidTestReports.Core/ReportGenerator.cs#L16C4-L16C35
I would like
ReportGeneratorto be madepublicso that it can be used as a public API.