A list of the types of reports to generate, separated by semicolons.

Namespace:  Gallio.MSBuildTasks
Assembly:  Gallio.MSBuildTasks (in Gallio.MSBuildTasks.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
public string[] ReportTypes { private get; set; }
Visual Basic (Declaration)
Public Property ReportTypes As String()

Remarks

  • The types supported "out of the box" are: Html, Html-Condensed, Text, Text-Condendes, XHtml, XHtml-Condensed, MHtml, MHtml-CondensedXml, and Xml-Inline, but more types could be available as plugins.
  • The report types are not case sensitive.

Examples

In the following example reports will be generated in both HTML and XML format:
CopyC#
<Target Name="MyTarget">
    <Gallio ReportTypes="html;xml" />
</Target>

See Also