Specifies option property key/value pairs for the report formatter.

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

Syntax

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

Examples

The following example changes the default attachment content disposition for the reports.
CopyC#
<Target Name="MyTarget">
    <Gallio Files="MyTestAssembly.dll" RunnerExtensions="AttachmentContentDisposition=Absent" />
</Target>

See Also