| Q: We need to compare results of
metric analysis for two different versions of our software. Our idea is to
use DAC's ability to save tabular view for normalized values and then
compare two files using our version control system. How can we achieve
that (although it doesn't look logical, on the first sight)?
A: You have to modify project (or default) visual INI
file: open File / Configuration files / Visual INI file and type
"AllowTableViewByCrossReport=1" (without quotes) in the
[Metrics] section. You can insert
"AllowTableViewByAverageReport=1" in the same section, to enable
tabular view in the Average report.
In case that [Metrics] section does not exist in your
Visual INI file, you can safely add it manually at the end of the INI
file, and then enter parameters mentioned above.
Examle:
[Metrics]
AllowTableViewByCrossReport=1
AllowTableViewByAverageReport=1
|