Sets the report archive mode.

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

Syntax

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

Remarks

The supported modes are:

  • Normal (default)
  • Zip

Examples

In the following example, reports will be enclosed in a zip file:
CopyC#
<Target Name="MyTarget">
    <Gallio ReportArchive="zip" />
</Target>

See Also